[MIG] bi_view_editor: Migration to 11.0
parent
7f51fde158
commit
212eeb63a3
|
@ -1,5 +1,5 @@
|
||||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
:target: https://www.gnu.org/licenses/agpl
|
||||||
:alt: License: AGPL-3
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
==============
|
==============
|
||||||
|
@ -39,16 +39,20 @@ To graphically design your analysis data-set:
|
||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
:alt: Try me on Runbot
|
||||||
:target: https://runbot.odoo-community.org/runbot/143/10.0
|
:target: https://runbot.odoo-community.org/runbot/143/11.0
|
||||||
|
|
||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
|
|
||||||
* Non-stored fields are not supported
|
* Non-stored fields and many2many fields are not supported
|
||||||
* Provide graph view for table relations
|
* Provide graph view for table relations
|
||||||
* Extend the capabilities of the tree views (e.g. add sums)
|
* Extend the capabilities of the tree views (e.g. add sums)
|
||||||
* Provide a tutorial (eg. a working example of usage)
|
* Provide a tutorial (eg. a working example of usage)
|
||||||
* Implement a more advanced UI, with possibilities to use LEFT JOIN as default instead of INNER JOIN
|
* Implement a more advanced UI, with possibilities to use LEFT JOIN as default instead of INNER JOIN
|
||||||
|
* Find better ways to extend the *_auto_init()* without override (possibly avoid the monkey patch)
|
||||||
|
* Data the user has no access to (e.g. in a multi company situation) can be viewed by making a view
|
||||||
|
* Store the JSON data structure in ORM
|
||||||
|
* Would be nice if models available to select when creating a view are limited to the ones that have intersecting groups (for non technical users)
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
@ -78,6 +82,15 @@ Contributors
|
||||||
* Antonio Esposito <a.esposito@onestein.nl>
|
* Antonio Esposito <a.esposito@onestein.nl>
|
||||||
* Jordi Ballester Alomar <jordi.ballester@eficent.com>
|
* Jordi Ballester Alomar <jordi.ballester@eficent.com>
|
||||||
|
|
||||||
|
Do not contact contributors directly about support or help with technical issues.
|
||||||
|
|
||||||
|
Funders
|
||||||
|
-------
|
||||||
|
|
||||||
|
The development of this module has been financially supported by:
|
||||||
|
|
||||||
|
* IDEAL Connaissances SAS https://www.idealconnaissances.com
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
# -*- coding: utf-8 -*-
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from . import models
|
from . import models
|
||||||
from . import wizard
|
from . import wizard
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'BI View Editor',
|
'name': 'BI View Editor',
|
||||||
|
@ -8,9 +7,9 @@
|
||||||
'images': ['static/description/main_screenshot.png'],
|
'images': ['static/description/main_screenshot.png'],
|
||||||
'author': 'Onestein,Odoo Community Association (OCA)',
|
'author': 'Onestein,Odoo Community Association (OCA)',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'website': 'http://www.onestein.eu',
|
'website': 'https://github.com/OCA/reporting-engine',
|
||||||
'category': 'Reporting',
|
'category': 'Reporting',
|
||||||
'version': '10.0.1.0.1',
|
'version': '11.0.1.0.0',
|
||||||
'depends': [
|
'depends': [
|
||||||
'base',
|
'base',
|
||||||
'web'
|
'web'
|
||||||
|
@ -22,7 +21,7 @@
|
||||||
'views/bve_view.xml',
|
'views/bve_view.xml',
|
||||||
],
|
],
|
||||||
'qweb': [
|
'qweb': [
|
||||||
'templates/qweb_template.xml',
|
'static/src/xml/bi_view_editor.xml'
|
||||||
],
|
],
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'uninstall_hook': 'uninstall_hook'
|
'uninstall_hook': 'uninstall_hook'
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
|
|
||||||
def uninstall_hook(cr, registry):
|
def uninstall_hook(cr, registry):
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-15 19:59+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/am/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización por"
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ar/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "أنشئ بواسطة"
|
msgstr "أنشئ بواسطة"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "أنشئ في"
|
msgstr "أنشئ في"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "اسم العرض"
|
msgstr "اسم العرض"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "المعرف"
|
msgstr "المعرف"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "آخر تعديل في"
|
msgstr "آخر تعديل في"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "آخر تحديث بواسطة"
|
msgstr "آخر تحديث بواسطة"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "آخر تحديث في"
|
msgstr "آخر تحديث في"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "الاسم"
|
msgstr "الاسم"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "الأمن"
|
msgstr "الأمن"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "المستخدمون"
|
msgstr "المستخدمون"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/bg/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Създадено от"
|
msgstr "Създадено от"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Създадено на"
|
msgstr "Създадено на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Име за Показване"
|
msgstr "Име за Показване"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Последно обновено на"
|
msgstr "Последно обновено на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Последно обновено от"
|
msgstr "Последно обновено от"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Последно обновено на"
|
msgstr "Последно обновено на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Име"
|
msgstr "Име"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Защита"
|
msgstr "Защита"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/bs/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Kreirao"
|
msgstr "Kreirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Kreirano"
|
msgstr "Kreirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Prikaži naziv"
|
msgstr "Prikaži naziv"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zadnje mijenjano"
|
msgstr "Zadnje mijenjano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnji ažurirao"
|
msgstr "Zadnji ažurirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnje ažurirano"
|
msgstr "Zadnje ažurirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ime"
|
msgstr "Ime"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sigurnost"
|
msgstr "Sigurnost"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-14 06:04+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ca/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creat per"
|
msgstr "Creat per"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creat el"
|
msgstr "Creat el"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Veure el nom"
|
msgstr "Veure el nom"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Error"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Darrera modificació el"
|
msgstr "Darrera modificació el"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Darrera Actualització per"
|
msgstr "Darrera Actualització per"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Darrera Actualització el"
|
msgstr "Darrera Actualització el"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Estat"
|
msgstr "Estat"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuaris"
|
msgstr "Usuaris"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
"Language-Team: Czech (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/cs/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Vytvořil(a)"
|
msgstr "Vytvořil(a)"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Vytvořeno"
|
msgstr "Vytvořeno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Zobrazovaný název"
|
msgstr "Zobrazovaný název"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Naposled upraveno"
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Naposled upraveno"
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Naposled upraveno"
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Zabezpečení"
|
msgstr "Zabezpečení"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
"Language-Team: Danish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/da/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Oprettet af"
|
msgstr "Oprettet af"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Oprettet den"
|
msgstr "Oprettet den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Vist navn"
|
msgstr "Vist navn"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Id"
|
msgstr "Id"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Sidst ændret den"
|
msgstr "Sidst ændret den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Sidst opdateret af"
|
msgstr "Sidst opdateret af"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Sidst opdateret den"
|
msgstr "Sidst opdateret den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sikkerhed"
|
msgstr "Sikkerhed"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Brugere"
|
msgstr "Brugere"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-21 05:51+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
"Language-Team: German (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Aktion"
|
msgstr "Aktion"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Erstellt von"
|
msgstr "Erstellt von"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Erstellt am:"
|
msgstr "Erstellt am:"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Anzeigename"
|
msgstr "Anzeigename"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Entwurf"
|
msgstr "Entwurf"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zuletzt geändert am"
|
msgstr "Zuletzt geändert am"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zuletzt aktualisiert von"
|
msgstr "Zuletzt aktualisiert von"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zuletzt aktualisiert am"
|
msgstr "Zuletzt aktualisiert am"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Datenmodelle"
|
msgstr "Datenmodelle"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Bezeichnung"
|
msgstr "Bezeichnung"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Hinweise"
|
msgstr "Hinweise"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Benutzer"
|
msgstr "Benutzer"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
|
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/el_GR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Δημιουργήθηκε από "
|
msgstr "Δημιουργήθηκε από "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Δημιουργήθηκε στις"
|
msgstr "Δημιουργήθηκε στις"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Κωδικός"
|
msgstr "Κωδικός"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Τελευταία ενημέρωση από"
|
msgstr "Τελευταία ενημέρωση από"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Τελευταία ενημέρωση στις"
|
msgstr "Τελευταία ενημέρωση στις"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Χρήστες"
|
msgstr "Χρήστες"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Created by"
|
msgstr "Created by"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Created on"
|
msgstr "Created on"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Display Name"
|
msgstr "Display Name"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Last Modified on"
|
msgstr "Last Modified on"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Last Updated by"
|
msgstr "Last Updated by"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Last Updated on"
|
msgstr "Last Updated on"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Security"
|
msgstr "Security"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,17 +3,15 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
# Eduardo Rodríguez Crespo <erocre@gmail.com>, 2016
|
||||||
# Fernando Lara <gennesis45@gmail.com>, 2018
|
|
||||||
# enjolras <yo@miguelrevilla.com>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2016-05-08 09:43+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2016-06-13 21:28+0000\n"
|
||||||
"Last-Translator: enjolras <yo@miguelrevilla.com>, 2018\n"
|
"Last-Translator: Eduardo Rodríguez Crespo <erocre@gmail.com>\n"
|
||||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -21,83 +19,50 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
msgstr "%s (copia)"
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr "<b>Unirse</b> usando el campo"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Acción"
|
msgstr "Acción"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr "Vista BI"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr "Editor de vistas BI"
|
msgstr "Editor de vistas BI"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr "Crear un menú"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Creado"
|
msgstr "Creado"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado el"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr "Vista BI personalizada"
|
msgstr "Vista BI personalizada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr "El nombre de las vistas BI personalizadas debe ser único."
|
msgstr "¡El nombre de las vistas BI personalizadas debe ser único!"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form
|
#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form
|
||||||
|
@ -106,7 +71,7 @@ msgid "Custom BI Views"
|
||||||
msgstr "Vistas BI personalizadas"
|
msgstr "Vistas BI personalizadas"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr "Objeto personalizado"
|
msgstr "Objeto personalizado"
|
||||||
|
|
||||||
|
@ -116,12 +81,12 @@ msgid "Custom Reports"
|
||||||
msgstr "Informes personalizados"
|
msgstr "Informes personalizados"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Datos"
|
msgstr "Datos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre mostrado"
|
msgstr "Nombre mostrado"
|
||||||
|
|
||||||
|
@ -131,38 +96,44 @@ msgid "Draft"
|
||||||
msgstr "Borrador"
|
msgstr "Borrador"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Error"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr "Generar vista BI"
|
msgstr "Generar vista BI"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Grupos"
|
msgstr "Grupos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación el"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización por"
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización el"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr "Nombre del modelo"
|
msgstr "Nombre del modelo"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -171,124 +142,67 @@ msgid "Models"
|
||||||
msgstr "Modelos"
|
msgstr "Modelos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr "No se mostrará información"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr "No hay información que procesar."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr "Abrir vista BI"
|
msgstr "Abrir vista BI"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr "Consulta"
|
msgstr "Consulta"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Devolver a estado borrador"
|
msgstr "Devolver a estado borrador"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Estado"
|
msgstr "Estado"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr "Usar el campo en el modelo"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr "Usa el constructor especial de consultas para definir la consulta del informe de datos. NOTA: para ser editada, la consulta debe estar en estado 'Borrador'"
|
||||||
"Usa el constructor especial de consultas para definir la consulta del "
|
|
||||||
"informe de datos. NOTA: para ser editada, la consulta debe estar en estado "
|
|
||||||
"'Borrador'"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr "Grupos de usuarios permitidos para ver el informe generado; si NO se especifican grupos, el informe será público para todos"
|
||||||
"Grupos de usuarios permitidos para ver el informe generado; si NO se "
|
|
||||||
"especifican grupos, el informe será público para todos"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuarios"
|
msgstr "Usuarios"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Vista"
|
msgstr "Vista"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr "¡No puedes eliminar una vista creada! Devuélvela a estado borrador primero"
|
||||||
"No se puede eliminar una vista creada. Debe ser devuelta primero a estado de"
|
|
||||||
" borrador."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr "base"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr "modelo"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr "nuevo"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr "en"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr "wizard.ir.model.menu.create"
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
|
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_AR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Mostrar Nombre"
|
msgstr "Mostrar Nombre"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación en"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización realizada por"
|
msgstr "Última actualización realizada por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización el"
|
msgstr "Última actualización el"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CL/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre mostrado"
|
msgstr "Nombre mostrado"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID (identificación)"
|
msgstr "ID (identificación)"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación en"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización de"
|
msgstr "Última actualización de"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
|
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CO/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado"
|
msgstr "Creado"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre Público"
|
msgstr "Nombre Público"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última Modificación el"
|
msgstr "Última Modificación el"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Actualizado por"
|
msgstr "Actualizado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Actualizado"
|
msgstr "Actualizado"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ultima actualización por"
|
msgstr "Ultima actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima actualización en"
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre mostrado"
|
msgstr "Nombre mostrado"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación en"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización de"
|
msgstr "Última actualización de"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
|
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_EC/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre mostrado"
|
msgstr "Nombre mostrado"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID (identificación)"
|
msgstr "ID (identificación)"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación en"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización de"
|
msgstr "Última actualización de"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-21 05:51+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
|
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_ES/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre para mostrar"
|
msgstr "Nombre para mostrar"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación en"
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización por"
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modelos"
|
msgstr "Modelos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuarios"
|
msgstr "Usuarios"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
|
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_MX/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre desplegado"
|
msgstr "Nombre desplegado"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Ultima modificacion realizada"
|
msgstr "Ultima modificacion realizada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ultima actualizacion por"
|
msgstr "Ultima actualizacion por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima actualización realizada"
|
msgstr "Ultima actualización realizada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
|
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_PE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nombre a Mostrar"
|
msgstr "Nombre a Mostrar"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Ultima Modificación en"
|
msgstr "Ultima Modificación en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Actualizado última vez por"
|
msgstr "Actualizado última vez por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima Actualización"
|
msgstr "Ultima Actualización"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
|
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_PY/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ultima actualización por"
|
msgstr "Ultima actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima actualización en"
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
|
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_VE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Mostrar nombre"
|
msgstr "Mostrar nombre"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Modificada por última vez"
|
msgstr "Modificada por última vez"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización realizada por"
|
msgstr "Última actualización realizada por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima actualizacion en"
|
msgstr "Ultima actualizacion en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-03 04:09+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/et/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Loonud"
|
msgstr "Loonud"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Loodud"
|
msgstr "Loodud"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Näidatav nimi"
|
msgstr "Näidatav nimi"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Viimati muudetud"
|
msgstr "Viimati muudetud"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Viimati uuendatud"
|
msgstr "Viimati uuendatud"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Viimati uuendatud"
|
msgstr "Viimati uuendatud"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Turvalisus"
|
msgstr "Turvalisus"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-21 05:51+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
"Language-Team: Basque (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/eu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Nork sortua"
|
msgstr "Nork sortua"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Created on"
|
msgstr "Created on"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Izena erakutsi"
|
msgstr "Izena erakutsi"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Errorea"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Last Updated by"
|
msgstr "Last Updated by"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Last Updated on"
|
msgstr "Last Updated on"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Models"
|
msgstr "Models"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Izena"
|
msgstr "Izena"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
"Language-Team: Persian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fa/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "ایجاد شده توسط"
|
msgstr "ایجاد شده توسط"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "ایجاد شده در"
|
msgstr "ایجاد شده در"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "نام نمایشی"
|
msgstr "نام نمایشی"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "شناسه"
|
msgstr "شناسه"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "تاریخ آخرین بهروزرسانی"
|
msgstr "تاریخ آخرین بهروزرسانی"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "آخرین به روز رسانی توسط"
|
msgstr "آخرین به روز رسانی توسط"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "آخرین به روز رسانی در"
|
msgstr "آخرین به روز رسانی در"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "نام"
|
msgstr "نام"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "امنیت"
|
msgstr "امنیت"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-21 05:51+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fi/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Toiminto"
|
msgstr "Toiminto"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Luonut"
|
msgstr "Luonut"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Luotu"
|
msgstr "Luotu"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Luonnos"
|
msgstr "Luonnos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Virhe"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Viimeksi muokattu"
|
msgstr "Viimeksi muokattu"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Viimeksi päivittänyt"
|
msgstr "Viimeksi päivittänyt"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Viimeksi päivitetty"
|
msgstr "Viimeksi päivitetty"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Mallit"
|
msgstr "Mallit"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Huomautukset"
|
msgstr "Huomautukset"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Palauta luonnokseksi"
|
msgstr "Palauta luonnokseksi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Tila"
|
msgstr "Tila"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Käyttäjät"
|
msgstr "Käyttäjät"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,16 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
# Quentin THEURET <odoo@kerpeo.com>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2016-12-03 04:09+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
"Language-Team: French (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -20,107 +18,74 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
msgstr "%s (copie)"
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr "<b>Jointure</b> utilisant le champ"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Action"
|
msgstr "Action"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr "Vue BI"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr "Éditeur de vue BI"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuler"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr "Choisissez un nœud de jointure"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr "Cliquez pour créer un objet de requête personnalisée."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr "Créer un menu"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Créé"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Créé par"
|
msgstr "Créé par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr "Vue BI personnalisée"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr "Le nom de la vue BI personnalisée doit être unique !"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form
|
#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view
|
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view
|
||||||
msgid "Custom BI Views"
|
msgid "Custom BI Views"
|
||||||
msgstr "Vues BI personnalisées"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr "Objet personnalisé"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports
|
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports
|
||||||
msgid "Custom Reports"
|
msgid "Custom Reports"
|
||||||
msgstr "Rapports personnalisé"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Données"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nom à afficher"
|
msgstr "Nom à afficher"
|
||||||
|
|
||||||
|
@ -130,39 +95,45 @@ msgid "Draft"
|
||||||
msgstr "Brouillon"
|
msgstr "Brouillon"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
msgid "Generate BI View"
|
#, python-format
|
||||||
msgstr "Générer la vue BI"
|
msgid "Error"
|
||||||
|
msgstr "Erreur"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
|
msgid "Generate BI View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Groupes"
|
msgstr "Groupes"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Dernière modification le"
|
msgstr "Dernière modification le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Dernière mise à jour par"
|
msgstr "Dernière mise à jour par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Dernière mise à jour le"
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr "Nom du modèle"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_ir_model
|
#: model:ir.model,name:bi_view_editor.model_ir_model
|
||||||
|
@ -170,124 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modèles"
|
msgstr "Modèles"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr "Aucune donnée à afficher."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr "Aucune donnée à traiter."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Commentaires"
|
msgstr "Commentaires"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr "Ouvrir la vue BI"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr "Requête"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Remettre en brouillon"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sécurité"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "État"
|
msgstr "État"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr "Utiliser le champ sur le modèle"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Utiliser le constructeur de requête spéciale pour définir la requête pour "
|
|
||||||
"générer votre rapport de jeu de données. NOTE : Pour être éditée, la requête"
|
|
||||||
" doit être dans l'état 'Brouillon'."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Les groupes d'utilisateurs autorisés à voir le rapport généré; si aucun "
|
|
||||||
"groupe n'est spécifié, le rapport sera accessible à tout le monde."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utilisateurs"
|
msgstr "Utilisateurs"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Vue"
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous ne pouvez pas supprimer une vue créée ! Remettez d'abord la vue en "
|
|
||||||
"brouillon."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr "base"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr "modèle"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr "nouveau"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr "sur"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr "wizard.ir.model.menu.create"
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
|
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr_CA/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Créé par"
|
msgstr "Créé par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Créé le"
|
msgstr "Créé le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Afficher le nom"
|
msgstr "Afficher le nom"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Identifiant"
|
msgstr "Identifiant"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Dernière mise à jour par"
|
msgstr "Dernière mise à jour par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Dernière mise à jour le"
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-11-29 16:14+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
|
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr_CH/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Créé par"
|
msgstr "Créé par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Créé le"
|
msgstr "Créé le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nom affiché"
|
msgstr "Nom affiché"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Dernière modification le"
|
msgstr "Dernière modification le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Modifié par"
|
msgstr "Modifié par"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Modifié le"
|
msgstr "Modifié le"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "État"
|
msgstr "État"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utilisateurs"
|
msgstr "Utilisateurs"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
"Language-Team: Galician (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/gl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última modificación"
|
msgstr "Última modificación"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "ültima actualización por"
|
msgstr "ültima actualización por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización en"
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
|
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/gl_ES/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/he/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "נוצר על ידי"
|
msgstr "נוצר על ידי"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "נוצר ב-"
|
msgstr "נוצר ב-"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "השם המוצג"
|
msgstr "השם המוצג"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "מזהה"
|
msgstr "מזהה"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "תאריך שינוי אחרון"
|
msgstr "תאריך שינוי אחרון"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "עודכן לאחרונה על ידי"
|
msgstr "עודכן לאחרונה על ידי"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "עודכן לאחרונה על"
|
msgstr "עודכן לאחרונה על"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "שם"
|
msgstr "שם"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "אבטחה"
|
msgstr "אבטחה"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,16 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Bole <bole@dajmi5.com>, 2018
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -20,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Kreirao"
|
msgstr "Kreirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Kreirano"
|
msgstr "Kreirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -105,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -115,14 +80,14 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Naziv"
|
msgstr "Naziv "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
|
@ -130,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zadnje modificirano"
|
msgstr "Zadnje modificirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnji ažurirao"
|
msgstr "Zadnji ažurirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnje ažurirano"
|
msgstr "Zadnje ažuriranje"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -170,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modeli"
|
msgstr "Modeli"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naziv"
|
msgstr "Naziv"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Bilješke"
|
msgstr "Bilješke"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sigurnost"
|
msgstr "Sigurnost"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Korisnici"
|
msgstr "Korisnici"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,16 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Bole <bole@dajmi5.com>, 2018
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
|
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr_HR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -20,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Kreirao"
|
msgstr "Kreirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Kreirano"
|
msgstr "Kreirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -105,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -115,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Naziv"
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
@ -130,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zadnje modificirano"
|
msgstr "Zadnje modificirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnji ažurirao"
|
msgstr "Zadnji ažurirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnje ažurirano"
|
msgstr "Zadnje ažurirano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -170,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modeli"
|
msgstr "Modeli"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Korisnici"
|
msgstr "Korisnici"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-03 04:09+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Készítette"
|
msgstr "Készítette"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Létrehozás dátuma"
|
msgstr "Létrehozás dátuma"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Név megjelenítése"
|
msgstr "Név megjelenítése"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Utolsó frissítés dátuma"
|
msgstr "Utolsó frissítés dátuma"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Utoljára frissítve, által"
|
msgstr "Utoljára frissítve, által"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Utoljára frissítve "
|
msgstr "Utoljára frissítve "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Név"
|
msgstr "Név"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Biztonság"
|
msgstr "Biztonság"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/id/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Dibuat oleh"
|
msgstr "Dibuat oleh"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Dibuat pada"
|
msgstr "Dibuat pada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nama Tampilan"
|
msgstr "Nama Tampilan"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Terakhir Dimodifikasi pada"
|
msgstr "Terakhir Dimodifikasi pada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Diperbaharui oleh"
|
msgstr "Diperbaharui oleh"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Diperbaharui pada"
|
msgstr "Diperbaharui pada"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Keamanan"
|
msgstr "Keamanan"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-21 05:51+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
"Language-Team: Italian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/it/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Azione"
|
msgstr "Azione"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creato da"
|
msgstr "Creato da"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creato il"
|
msgstr "Creato il"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nome da visualizzare"
|
msgstr "Nome da visualizzare"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Bozza"
|
msgstr "Bozza"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Error"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Ultima modifica il"
|
msgstr "Ultima modifica il"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ultimo aggiornamento di"
|
msgstr "Ultimo aggiornamento di"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultimo aggiornamento il"
|
msgstr "Ultimo aggiornamento il"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modelli"
|
msgstr "Modelli"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sicurezza"
|
msgstr "Sicurezza"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Stato"
|
msgstr "Stato"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utenti"
|
msgstr "Utenti"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ja/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "作成者"
|
msgstr "作成者"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "作成日"
|
msgstr "作成日"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "表示名"
|
msgstr "表示名"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "最終更新日"
|
msgstr "最終更新日"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "最終更新者"
|
msgstr "最終更新者"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "最終更新日"
|
msgstr "最終更新日"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "セキュリティ"
|
msgstr "セキュリティ"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
"Language-Team: Korean (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ko/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "작성자"
|
msgstr "작성자"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "작성일"
|
msgstr "작성일"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "표시 이름"
|
msgstr "표시 이름"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "최근 수정"
|
msgstr "최근 수정"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "최근 갱신한 사람"
|
msgstr "최근 갱신한 사람"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "최근 갱신 날짜"
|
msgstr "최근 갱신 날짜"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "이름"
|
msgstr "이름"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "보안"
|
msgstr "보안"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lt/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Sukūrė"
|
msgstr "Sukūrė"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Sukurta"
|
msgstr "Sukurta"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Vaizduojamas pavadinimas"
|
msgstr "Vaizduojamas pavadinimas"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Paskutinį kartą keista"
|
msgstr "Paskutinį kartą keista"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Paskutinį kartą atnaujino"
|
msgstr "Paskutinį kartą atnaujino"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Paskutinį kartą atnaujinta"
|
msgstr "Paskutinį kartą atnaujinta"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Pavadinimas"
|
msgstr "Pavadinimas"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Saugumas"
|
msgstr "Saugumas"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
|
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lt_LT/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Sukūrė"
|
msgstr "Sukūrė"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Sukurta"
|
msgstr "Sukurta"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Paskutinį kartą atnaujino"
|
msgstr "Paskutinį kartą atnaujino"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Paskutinį kartą atnaujinta"
|
msgstr "Paskutinį kartą atnaujinta"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lv/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Izveidoja"
|
msgstr "Izveidoja"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Izveidots"
|
msgstr "Izveidots"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Pēdējo reizi atjaunoja"
|
msgstr "Pēdējo reizi atjaunoja"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Pēdējās izmaiņas"
|
msgstr "Pēdējās izmaiņas"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nosaukums"
|
msgstr "Nosaukums"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Drošība"
|
msgstr "Drošība"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/mk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Креирано од"
|
msgstr "Креирано од"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Креирано на"
|
msgstr "Креирано на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Прикажи име"
|
msgstr "Прикажи име"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Последна промена на"
|
msgstr "Последна промена на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Последно ажурирање од"
|
msgstr "Последно ажурирање од"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Последно ажурирање на"
|
msgstr "Последно ажурирање на"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Име"
|
msgstr "Име"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Безбедност"
|
msgstr "Безбедност"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/mn/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Үүсгэгч"
|
msgstr "Үүсгэгч"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Үүсгэсэн"
|
msgstr "Үүсгэсэн"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Дэлгэцийн Нэр"
|
msgstr "Дэлгэцийн Нэр"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Сүүлийн засвар хийсэн"
|
msgstr "Сүүлийн засвар хийсэн"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Нэр"
|
msgstr "Нэр"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Хамгаалалт"
|
msgstr "Хамгаалалт"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
|
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nb/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Opprettet av"
|
msgstr "Opprettet av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Opprettet den"
|
msgstr "Opprettet den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Visnings navn"
|
msgstr "Visnings navn"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Sist oppdatert "
|
msgstr "Sist oppdatert "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Sist oppdatert av"
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Sist oppdatert"
|
msgstr "Sist oppdatert"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Sikkerhet"
|
msgstr "Sikkerhet"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Laget av"
|
msgstr "Laget av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Laget den"
|
msgstr "Laget den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Vis navn"
|
msgstr "Vis navn"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Sist endret den"
|
msgstr "Sist endret den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Sist oppdatert av"
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Sist oppdatert den"
|
msgstr "Sist oppdatert den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
# Translation of Odoo Server.
|
# Translation of Odoo Server.
|
||||||
# This file contains the translation of the following modules:
|
# This file contains the translation of the following modules:
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2017-03-14 19:54+0100\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-reporting-engine-10-0/"
|
||||||
|
"language/nl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +19,54 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Klik om een nieuwe custom query object te maken.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Actie"
|
msgstr "Actie"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr "BI Weergave bewerker"
|
msgstr "BI Weergave bewerker"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Aangemaakt"
|
msgstr "Aangemaakt"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Aangemaakt door"
|
msgstr "Aangemaakt door"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Aangemaakt op"
|
msgstr "Aangemaakt op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr "Aangepaste BI Weergave"
|
msgstr "Aangepaste BI Weergave"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr "Aangepaste BI Weergave moet uniek zijn!"
|
msgstr "Aangepaste BI Weergave moet uniek zijn!"
|
||||||
|
|
||||||
|
@ -104,7 +77,7 @@ msgid "Custom BI Views"
|
||||||
msgstr "Aangepaste BI Weergaves"
|
msgstr "Aangepaste BI Weergaves"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr "Aangepast object"
|
msgstr "Aangepast object"
|
||||||
|
|
||||||
|
@ -114,12 +87,12 @@ msgid "Custom Reports"
|
||||||
msgstr "Aangepaste rapporten"
|
msgstr "Aangepaste rapporten"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Te tonen naam"
|
msgstr "Te tonen naam"
|
||||||
|
|
||||||
|
@ -129,39 +102,45 @@ msgid "Draft"
|
||||||
msgstr "Concept"
|
msgstr "Concept"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Fout"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr "Genereer BI Weergave"
|
msgstr "Genereer BI Weergave"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Groepen"
|
msgstr "Groepen"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Laatst bijgewerkt op"
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Laatst bijgewerkt door"
|
msgstr "Laatst bijgewerkt door"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Laatst bijgewerkt op"
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr "Model naam"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_ir_model
|
#: model:ir.model,name:bi_view_editor.model_ir_model
|
||||||
|
@ -169,72 +148,53 @@ msgid "Models"
|
||||||
msgstr "Modellen"
|
msgstr "Modellen"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naam"
|
msgstr "Naam"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notities"
|
msgstr "Notities"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr "Open BI Weergave"
|
msgstr "Open BI Weergave"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr "Query"
|
msgstr "Query"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Terug naar concept"
|
msgstr "Terug naar concept"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Beveiliging"
|
msgstr "Beveiliging"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gebruik de speciale query bouwer om queries te definiëren voor uw rapportage"
|
"Gebruik de speciale query bouwer om queries te definiëren voor uw "
|
||||||
" dataset. LET OP: Om te bewerken moet de query in de 'Concept\" status zijn."
|
"rapportage dataset. LET OP: Om te bewerken moet de query in de 'Concept\" "
|
||||||
" "
|
"status zijn. "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
|
@ -243,50 +203,19 @@ msgstr ""
|
||||||
"groepen ingesteld zijn is het rapport zichtbaar voor alle gebruikers."
|
"groepen ingesteld zijn is het rapport zichtbaar voor alle gebruikers."
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Gebruikers"
|
msgstr "Gebruikers"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Weergave"
|
msgstr "Weergave"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"U kunt een aangemaakte weergave niet verwijderen. Reset de weergave eerst "
|
"U kunt een aangemaakte weergave niet verwijderen. Reset de weergave eerst "
|
||||||
"naar de concept fase."
|
"naar de concept fase."
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
|
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nl_BE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Gemaakt door"
|
msgstr "Gemaakt door"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Gemaakt op"
|
msgstr "Gemaakt op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Schermnaam"
|
msgstr "Schermnaam"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Laatst Aangepast op"
|
msgstr "Laatst Aangepast op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Laatst bijgewerkt door"
|
msgstr "Laatst bijgewerkt door"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Laatst bijgewerkt op"
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naam:"
|
msgstr "Naam:"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -1,285 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * bi_view_editor
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Peter Hageman <hageman.p@gmail.com>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
|
||||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2018\n"
|
|
||||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nl_NL\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
|
||||||
#, python-format
|
|
||||||
msgid "%s (copy)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
|
||||||
msgid "BI View Editor"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: selection:bve.view,state:0
|
|
||||||
msgid "Created"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Aangemaakt door"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Aangemaakt op"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
|
||||||
msgid "Custom BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view
|
|
||||||
msgid "Custom BI Views"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Custom Object"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports
|
|
||||||
msgid "Custom Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
|
||||||
msgid "Data"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Weergavenaam"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: selection:bve.view,state:0
|
|
||||||
msgid "Draft"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Generate BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
|
||||||
msgid "Model name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_ir_model
|
|
||||||
msgid "Models"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam"
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Open BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Query"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Reset to Draft"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
|
||||||
msgid "State"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
|
||||||
"Use the special query builder to define the query to generate your report "
|
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
|
||||||
msgid ""
|
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
|
||||||
"the report will be public for everyone."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
|
||||||
msgid "View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
|
||||||
#, python-format
|
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
|
@ -3,97 +3,63 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
"Language-Team: Polish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Utworzone przez"
|
msgstr "Utworzone przez"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Utworzono"
|
msgstr "Utworzono"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Wyświetlana nazwa "
|
msgstr "Wyświetlana nazwa "
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Ostatnio modyfikowano"
|
msgstr "Ostatnio modyfikowano"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ostatnio modyfikowane przez"
|
msgstr "Ostatnio modyfikowane przez"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ostatnia zmiana"
|
msgstr "Ostatnia zmiana"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nazwa"
|
msgstr "Nazwa"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Uprawnienia"
|
msgstr "Uprawnienia"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Criado por"
|
msgstr "Criado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Criado em"
|
msgstr "Criado em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Modificado a última vez por"
|
msgstr "Modificado a última vez por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Atualizado pela última vez por"
|
msgstr "Atualizado pela última vez por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Atualizado pela última vez em"
|
msgstr "Atualizado pela última vez em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,16 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
# Cezar José Sant Anna Junior <cezar.santanna@gmail.com>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-03 04:09+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: Cezar José Sant Anna Junior <cezar.santanna@gmail.com>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_BR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -20,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Ação"
|
msgstr "Ação"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Criado por"
|
msgstr "Criado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Criado em"
|
msgstr "Criado em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -105,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -115,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nome para Mostrar"
|
msgstr "Nome para Mostrar"
|
||||||
|
|
||||||
|
@ -130,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Rascunho"
|
msgstr "Rascunho"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Identificação"
|
msgstr "Identificação"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última atualização em"
|
msgstr "Última atualização em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última atualização por"
|
msgstr "Última atualização por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última atualização em"
|
msgstr "Última atualização em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -170,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modelos"
|
msgstr "Modelos"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Estado"
|
msgstr "Estado"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuários"
|
msgstr "Usuários"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-02-25 05:54+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
|
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_PT/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Criado por"
|
msgstr "Criado por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Criado em"
|
msgstr "Criado em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nome a Apresentar"
|
msgstr "Nome a Apresentar"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Rascunho"
|
msgstr "Rascunho"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Erro"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Última Modificação Em"
|
msgstr "Última Modificação Em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Atualizado pela última vez por"
|
msgstr "Atualizado pela última vez por"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Atualizado pela última vez em"
|
msgstr "Atualizado pela última vez em"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ro/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creat de"
|
msgstr "Creat de"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creat la"
|
msgstr "Creat la"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Nume Afişat"
|
msgstr "Nume Afişat"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Ultima actualizare în"
|
msgstr "Ultima actualizare în"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Ultima actualizare făcută de"
|
msgstr "Ultima actualizare făcută de"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Ultima actualizare la"
|
msgstr "Ultima actualizare la"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
"Language-Team: Russian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ru/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Создано"
|
msgstr "Создано"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Создан"
|
msgstr "Создан"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Последний раз обновлено"
|
msgstr "Последний раз обновлено"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Последний раз обновлено"
|
msgstr "Последний раз обновлено"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Название"
|
msgstr "Название"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Vytvoril"
|
msgstr "Vytvoril"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Vytvorené"
|
msgstr "Vytvorené"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Zobraziť meno"
|
msgstr "Zobraziť meno"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Posledná modifikácia"
|
msgstr "Posledná modifikácia"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Naposledy upravoval"
|
msgstr "Naposledy upravoval"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Naposledy upravované"
|
msgstr "Naposledy upravované"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Meno"
|
msgstr "Meno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Bezpečnosť"
|
msgstr "Bezpečnosť"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2016-05-04 02:44+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2016-05-03 15:03+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +19,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
msgstr ""
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
|
msgstr "<p class=\"oe_view_nocontent_create\">\n Ustvari prilagojen objekt poizvedbe.\n </p><p>\n\n </p>\n "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Ukrep"
|
msgstr "Ukrep"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr "BI urejevalnik prikazov"
|
msgstr "BI urejevalnik prikazov"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Nastanek"
|
msgstr "Nastanek"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Ustvaril"
|
msgstr "Ustvaril"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Ustvarjeno"
|
msgstr "Ustvarjeno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr "Prilagojen BI prikaz"
|
msgstr "Prilagojen BI prikaz"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr "Nazivi prilagojenih BI prikazov morajo biti unikatni!"
|
msgstr "Nazivi prilagojenih BI prikazov morajo biti unikatni!"
|
||||||
|
|
||||||
|
@ -104,7 +71,7 @@ msgid "Custom BI Views"
|
||||||
msgstr "Prilagojeni BI prikazi"
|
msgstr "Prilagojeni BI prikazi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr "Prilagojen objekt"
|
msgstr "Prilagojen objekt"
|
||||||
|
|
||||||
|
@ -114,12 +81,12 @@ msgid "Custom Reports"
|
||||||
msgstr "Prilagojena poročila"
|
msgstr "Prilagojena poročila"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Podatki"
|
msgstr "Podatki"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Prikazni naziv"
|
msgstr "Prikazni naziv"
|
||||||
|
|
||||||
|
@ -129,39 +96,45 @@ msgid "Draft"
|
||||||
msgstr "Osnutek"
|
msgstr "Osnutek"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Napaka"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr "Ustvari BI prikaz"
|
msgstr "Ustvari BI prikaz"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Skupine"
|
msgstr "Skupine"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zadnjič spremenjeno"
|
msgstr "Zadnjič spremenjeno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnji posodobil"
|
msgstr "Zadnji posodobil"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnjič posodobljeno"
|
msgstr "Zadnjič posodobljeno"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr "Naziv modela"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_ir_model
|
#: model:ir.model,name:bi_view_editor.model_ir_model
|
||||||
|
@ -169,124 +142,67 @@ msgid "Models"
|
||||||
msgstr "Modeli"
|
msgstr "Modeli"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naziv"
|
msgstr "Naziv"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Opombe"
|
msgstr "Opombe"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr "Odpri BI prikaz"
|
msgstr "Odpri BI prikaz"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr "Poizvedba"
|
msgstr "Poizvedba"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Ponastavi v osnutek"
|
msgstr "Ponastavi v osnutek"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Varnost"
|
msgstr "Varnost"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Stanje"
|
msgstr "Stanje"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr "Uporabite posebni gradnik poizvedb za določanje poizvedbe, ki bo ustvarila poročilo z vašim naborom podatkov. OPOMBA: Urejate lahko le poizvedbe s statusom 'Osnutek'."
|
||||||
"Uporabite posebni gradnik poizvedb za določanje poizvedbe, ki bo ustvarila "
|
|
||||||
"poročilo z vašim naborom podatkov. OPOMBA: Urejate lahko le poizvedbe s "
|
|
||||||
"statusom 'Osnutek'."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr "Uporabniške skupine, ki imajo vpogled v ustvarjeno poročilo; če ni določena nobena skupina, bo poročilo javno dostopno."
|
||||||
"Uporabniške skupine, ki imajo vpogled v ustvarjeno poročilo; če ni določena "
|
|
||||||
"nobena skupina, bo poročilo javno dostopno."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Uporabniki"
|
msgstr "Uporabniki"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Prikaz"
|
msgstr "Prikaz"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr "Ustvarjenega prikaza ne morete brisati! Najprej morate prikaz ponastaviti v osnutek."
|
||||||
"Ustvarjenega prikaza ne morete brisati! Najprej morate prikaz ponastaviti v "
|
|
||||||
"osnutek."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Kreiran"
|
msgstr "Kreiran"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ime"
|
msgstr "Ime"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Bezbednost"
|
msgstr "Bezbednost"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n"
|
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sr@latin/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Kreirao"
|
msgstr "Kreirao"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Kreiran"
|
msgstr "Kreiran"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Ime za prikaz"
|
msgstr "Ime za prikaz"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Zadnja izmjena"
|
msgstr "Zadnja izmjena"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnja izmjena"
|
msgstr "Zadnja izmjena"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnja izmjena"
|
msgstr "Zadnja izmjena"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ime:"
|
msgstr "Ime:"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Bezbednost"
|
msgstr "Bezbednost"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sv/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Skapad av"
|
msgstr "Skapad av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Skapad den"
|
msgstr "Skapad den"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Visa namn"
|
msgstr "Visa namn"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Senast redigerad"
|
msgstr "Senast redigerad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Senast uppdaterad av"
|
msgstr "Senast uppdaterad av"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Senast uppdaterad"
|
msgstr "Senast uppdaterad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Säkerhet"
|
msgstr "Säkerhet"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
"Language-Team: Thai (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/th/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "สร้างโดย"
|
msgstr "สร้างโดย"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "สร้างเมื่อ"
|
msgstr "สร้างเมื่อ"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "ชื่อที่ใช้แสดง"
|
msgstr "ชื่อที่ใช้แสดง"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "รหัส"
|
msgstr "รหัส"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "ชื่อ"
|
msgstr "ชื่อ"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "ความปลอดภัย"
|
msgstr "ความปลอดภัย"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Eylem"
|
msgstr "Eylem"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Oluşturan"
|
msgstr "Oluşturan"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Oluşturuldu"
|
msgstr "Oluşturuldu"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Görünen İsim"
|
msgstr "Görünen İsim"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr "Taslak"
|
msgstr "Taslak"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Son değişiklik"
|
msgstr "Son değişiklik"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Son güncelleyen"
|
msgstr "Son güncelleyen"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Son güncelleme"
|
msgstr "Son güncelleme"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr "Modeller"
|
msgstr "Modeller"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Adı"
|
msgstr "Adı"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notlar"
|
msgstr "Notlar"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr "Taslakta Sıfırla"
|
msgstr "Taslakta Sıfırla"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Durum"
|
msgstr "Durum"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Kullanıcılar"
|
msgstr "Kullanıcılar"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,97 +3,64 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-02-16 01:44+0000\n"
|
"POT-Creation-Date: 2016-12-31 06:53+0000\n"
|
||||||
"PO-Revision-Date: 2018-02-16 01:44+0000\n"
|
"PO-Revision-Date: 2017-01-04 14:44+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>\n"
|
||||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
|
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr_TR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Language: tr_TR\n"
|
"Language: tr_TR\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:384
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Eylem"
|
msgstr "Eylem"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:378
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Oluşturuldu"
|
msgstr "Oluşturuldu"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Oluşturan"
|
msgstr "Oluşturan"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Oluşturulma tarihi"
|
msgstr "Oluşturulma tarihi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +71,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +81,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Veri"
|
msgstr "Veri"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Görünen ad"
|
msgstr "Görünen ad"
|
||||||
|
|
||||||
|
@ -129,39 +96,45 @@ msgid "Draft"
|
||||||
msgstr "Taslak"
|
msgstr "Taslak"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Hata"
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Kimlik"
|
msgstr "Kimlik"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "En son güncelleme tarihi"
|
msgstr "En son güncelleme tarihi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "En son güncelleyen "
|
msgstr "En son güncelleyen "
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "En son güncelleme tarihi"
|
msgstr "En son güncelleme tarihi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr "Tip adı"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_ir_model
|
#: model:ir.model,name:bi_view_editor.model_ir_model
|
||||||
|
@ -169,121 +142,67 @@ msgid "Models"
|
||||||
msgstr "Tipler"
|
msgstr "Tipler"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ad"
|
msgstr "Ad"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:284
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notlar"
|
msgstr "Notlar"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr "Soru"
|
msgstr "Soru"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Güvenlik"
|
msgstr "Güvenlik"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Hal"
|
msgstr "Hal"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr "Kullanıcı grupları oluşturulan raporu görebilir; eğer hiçbir grup belirlenmemişse rapor herkes tarafından görüntülenebilir."
|
||||||
"Kullanıcı grupları oluşturulan raporu görebilir; eğer hiçbir grup "
|
|
||||||
"belirlenmemişse rapor herkes tarafından görüntülenebilir."
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Kullanıcılar"
|
msgstr "Kullanıcılar"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Görüntüle"
|
msgstr "Görüntüle"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:424
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr "Oluşturulmuş görüntüyü silemezsiniz! İlk önce taslak hazırlamak için görüntüyü sıfırla. "
|
||||||
"Oluşturulmuş görüntüyü silemezsiniz! İlk önce taslak hazırlamak için "
|
|
||||||
"görüntüyü sıfırla. "
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/uk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"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"
|
"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: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Створив"
|
msgstr "Створив"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Дата створення"
|
msgstr "Дата створення"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Назва для відображення"
|
msgstr "Назва для відображення"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Остання модифікація"
|
msgstr "Остання модифікація"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Востаннє оновив"
|
msgstr "Востаннє оновив"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Останнє оновлення"
|
msgstr "Останнє оновлення"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Безпека"
|
msgstr "Безпека"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/vi/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Được tạo bởi"
|
msgstr "Được tạo bởi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Được tạo vào"
|
msgstr "Được tạo vào"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "Tên hiển thị"
|
msgstr "Tên hiển thị"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "Sửa lần cuối vào"
|
msgstr "Sửa lần cuối vào"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Last Updated by"
|
msgstr "Last Updated by"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Cập nhật lần cuối vào"
|
msgstr "Cập nhật lần cuối vào"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Tên"
|
msgstr "Tên"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr "Bảo mật"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-12-24 04:38+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Tạo bởi"
|
msgstr "Tạo bởi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Tạo vào"
|
msgstr "Tạo vào"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Cập nhật lần cuối bởi"
|
msgstr "Cập nhật lần cuối bởi"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Cập nhật lần cuối vào"
|
msgstr "Cập nhật lần cuối vào"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2017-01-07 05:41+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
|
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/zh_CN/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "创建者"
|
msgstr "创建者"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "创建时间"
|
msgstr "创建时间"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "显示名称"
|
msgstr "显示名称"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "最后修改时间"
|
msgstr "最后修改时间"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "最后更新者"
|
msgstr "最后更新者"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "上次更新日期"
|
msgstr "上次更新日期"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "安全"
|
msgstr "安全"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "用户"
|
msgstr "用户"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -3,15 +3,14 @@
|
||||||
# * bi_view_editor
|
# * bi_view_editor
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
"Project-Id-Version: reporting-engine (8.0)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-01-25 03:45+0000\n"
|
"POT-Creation-Date: 2016-09-18 04:34+0000\n"
|
||||||
"PO-Revision-Date: 2018-01-25 03:45+0000\n"
|
"PO-Revision-Date: 2016-03-21 15:33+0000\n"
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
|
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/zh_TW/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
|
@ -19,81 +18,48 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:382
|
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
||||||
#, python-format
|
msgid ""
|
||||||
msgid "%s (copy)"
|
"<p class=\"oe_view_nocontent_create\">\n"
|
||||||
|
" Click to create a Custom Query Object.\n"
|
||||||
|
" </p><p>\n"
|
||||||
|
"\n"
|
||||||
|
" </p>\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: field:bve.view,action_id:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "<b>Join</b> using the field"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_action_id
|
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:376
|
|
||||||
#, python-format
|
|
||||||
msgid "BI View"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model,name:bi_view_editor.model_bve_view
|
#: model:ir.model,name:bi_view_editor.model_bve_view
|
||||||
msgid "BI View Editor"
|
msgid "BI View Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:43
|
|
||||||
#, python-format
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:41
|
|
||||||
#, python-format
|
|
||||||
msgid "Choose join node"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form
|
|
||||||
msgid "Click to create a Custom Query Object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Create a Menu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: selection:bve.view,state:0
|
#: selection:bve.view,state:0
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_uid
|
#: field:bve.view,create_uid:0
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "建立者"
|
msgstr "建立者"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_create_date
|
#: field:bve.view,create_date:0
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "建立於"
|
msgstr "建立於"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_tree
|
||||||
msgid "Custom BI View"
|
msgid "Custom BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:63 sql_constraint:bve.view:0
|
#: sql_constraint:bve.view:0
|
||||||
#, python-format
|
|
||||||
msgid "Custom BI View names must be unique!"
|
msgid "Custom BI View names must be unique!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -104,7 +70,7 @@ msgid "Custom BI Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Custom Object"
|
msgid "Custom Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -114,12 +80,12 @@ msgid "Custom Reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_data
|
#: field:bve.view,data:0
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_display_name
|
#: field:bve.view,display_name:0
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr "顯示名稱"
|
msgstr "顯示名稱"
|
||||||
|
|
||||||
|
@ -129,38 +95,44 @@ msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: code:addons/bi_view_editor/models/bve_view.py:72
|
||||||
|
#, python-format
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: bi_view_editor
|
||||||
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Generate BI View"
|
msgid "Generate BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_group_ids
|
#: field:bve.view,group_ids:0
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_id
|
#: field:bve.view,id:0
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "編號"
|
msgstr "編號"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view___last_update
|
#: field:bve.view,__last_update:0
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr "最後修改:"
|
msgstr "最後修改:"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_uid
|
#: field:bve.view,write_uid:0
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "最後更新:"
|
msgstr "最後更新:"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_write_date
|
#: field:bve.view,write_date:0
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "最後更新於"
|
msgstr "最後更新於"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_model_name
|
#: field:bve.view,model_name:0
|
||||||
msgid "Model name"
|
msgid "Model Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
|
@ -169,117 +141,67 @@ msgid "Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_name
|
#: field:bve.view,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名稱"
|
msgstr "名稱"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/models.py:42
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
#, python-format
|
#: field:bve.view,note:0
|
||||||
msgid "No data to be displayed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:285
|
|
||||||
#, python-format
|
|
||||||
msgid "No data to process."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_note
|
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Open BI View"
|
msgid "Open BI View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Query"
|
msgid "Query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Reset to Draft"
|
msgid "Reset to Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form
|
#: view:bve.view:bi_view_editor.view_bi_view_editor_view_form
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "安全"
|
msgstr "安全"
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_state
|
#: field:bve.view,state:0
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#. openerp-web
|
#: help:bve.view,data:0
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:26
|
|
||||||
#, python-format
|
|
||||||
msgid "Use the field on model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_data
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the special query builder to define the query to generate your report "
|
"Use the special query builder to define the query to generate your report "
|
||||||
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
"dataset. NOTE: To be edited, the query should be in 'Draft' status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,help:bi_view_editor.field_bve_view_group_ids
|
#: help:bve.view,group_ids:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"User groups allowed to see the generated report; if NO groups are specified "
|
"User groups allowed to see the generated report; if NO groups are specified "
|
||||||
"the report will be public for everyone."
|
"the report will be public for everyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_user_ids
|
#: field:bve.view,user_ids:0
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_view_id
|
#: field:bve.view,view_id:0
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
#. module: bi_view_editor
|
||||||
#: code:addons/bi_view_editor/models/bve_view.py:420
|
#: code:addons/bi_view_editor/models/bve_view.py:73
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You cannot delete a created view! Reset the view to draft first."
|
msgid "You cannot delete a created view! Reset the view to draft first."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_base
|
|
||||||
msgid "base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:30
|
|
||||||
#, python-format
|
|
||||||
msgid "new"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#. openerp-web
|
|
||||||
#: code:addons/bi_view_editor/static/src/js/bve.js:32
|
|
||||||
#, python-format
|
|
||||||
msgid "on "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: bi_view_editor
|
|
||||||
#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create
|
|
||||||
msgid "wizard.ir.model.menu.create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
# -*- coding: utf-8 -*-
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from . import models
|
from . import models
|
||||||
from . import bve_view
|
from . import bve_view
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
@ -130,7 +129,7 @@ class BveView(models.Model):
|
||||||
# create views
|
# create views
|
||||||
View = self.env['ir.ui.view']
|
View = self.env['ir.ui.view']
|
||||||
old_views = View.sudo().search([('model', '=', self.model_name)])
|
old_views = View.sudo().search([('model', '=', self.model_name)])
|
||||||
old_views.sudo().unlink()
|
old_views.unlink()
|
||||||
|
|
||||||
view_vals = [{
|
view_vals = [{
|
||||||
'name': 'Pivot Analysis',
|
'name': 'Pivot Analysis',
|
||||||
|
@ -205,18 +204,19 @@ class BveView(models.Model):
|
||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
|
|
||||||
def group_ids_with_access(model_name, access_mode):
|
def group_ids_with_access(model_name, access_mode):
|
||||||
|
# pylint: disable=sql-injection
|
||||||
self.env.cr.execute('''SELECT
|
self.env.cr.execute('''SELECT
|
||||||
g.id
|
g.id
|
||||||
FROM
|
FROM
|
||||||
ir_model_access a
|
ir_model_access a
|
||||||
JOIN ir_model m ON (a.model_id=m.id)
|
JOIN ir_model m ON (a.model_id=m.id)
|
||||||
JOIN res_groups g ON (a.group_id=g.id)
|
JOIN res_groups g ON (a.group_id=g.id)
|
||||||
LEFT JOIN ir_module_category c ON (c.id=g.category_id)
|
|
||||||
WHERE
|
WHERE
|
||||||
m.model=%s AND
|
m.model=%s AND
|
||||||
a.active IS True AND
|
a.active = true AND
|
||||||
a.perm_''' + access_mode, (model_name,))
|
a.perm_''' + access_mode, (model_name,))
|
||||||
return [x[0] for x in self.env.cr.fetchall()]
|
res = self.env.cr.fetchall()
|
||||||
|
return [x[0] for x in res]
|
||||||
|
|
||||||
info = json.loads(self._get_format_data(self.data))
|
info = json.loads(self._get_format_data(self.data))
|
||||||
model_names = list(set([f['model'] for f in info]))
|
model_names = list(set([f['model'] for f in info]))
|
||||||
|
@ -224,6 +224,10 @@ class BveView(models.Model):
|
||||||
group_ids_with_access(model_name, 'read')
|
group_ids_with_access(model_name, 'read')
|
||||||
) for model_name in model_names])
|
) for model_name in model_names])
|
||||||
|
|
||||||
|
if not read_groups and not self.group_ids:
|
||||||
|
raise UserError(_('Please select at least one group'
|
||||||
|
' on the security tab.'))
|
||||||
|
|
||||||
# read access
|
# read access
|
||||||
for group in read_groups:
|
for group in read_groups:
|
||||||
self.env['ir.model.access'].sudo().create({
|
self.env['ir.model.access'].sudo().create({
|
||||||
|
@ -294,12 +298,13 @@ class BveView(models.Model):
|
||||||
table_name = self.model_name.replace('.', '_')
|
table_name = self.model_name.replace('.', '_')
|
||||||
|
|
||||||
# robustness in case something went wrong
|
# robustness in case something went wrong
|
||||||
|
# pylint: disable=sql-injection
|
||||||
self._cr.execute('DROP TABLE IF EXISTS "%s"' % table_name)
|
self._cr.execute('DROP TABLE IF EXISTS "%s"' % table_name)
|
||||||
|
|
||||||
basic_fields = [
|
basic_fields = [
|
||||||
("t0.id", "id")
|
("t0.id", "id")
|
||||||
]
|
]
|
||||||
|
# pylint: disable=sql-injection
|
||||||
q = """CREATE or REPLACE VIEW %s as (
|
q = """CREATE or REPLACE VIEW %s as (
|
||||||
SELECT %s
|
SELECT %s
|
||||||
FROM %s
|
FROM %s
|
||||||
|
@ -314,6 +319,35 @@ class BveView(models.Model):
|
||||||
|
|
||||||
self.env.cr.execute(q)
|
self.env.cr.execute(q)
|
||||||
|
|
||||||
|
@api.multi
|
||||||
|
def action_translations(self):
|
||||||
|
self.ensure_one()
|
||||||
|
model = self.env['ir.model'].sudo().search([
|
||||||
|
('model', '=', self.model_name)
|
||||||
|
])
|
||||||
|
translation_obj = self.env['ir.translation'].sudo()
|
||||||
|
translation_obj.translate_fields('ir.model', model.id)
|
||||||
|
for field_id in model.field_id.ids:
|
||||||
|
translation_obj.translate_fields('ir.model.fields', field_id)
|
||||||
|
return {
|
||||||
|
'name': 'Translations',
|
||||||
|
'res_model': 'ir.translation',
|
||||||
|
'type': 'ir.actions.act_window',
|
||||||
|
'view_mode': 'tree',
|
||||||
|
'view_id': self.env.ref('base.view_translation_dialog_tree').id,
|
||||||
|
'target': 'current',
|
||||||
|
'flags': {'search_view': True, 'action_buttons': True},
|
||||||
|
'domain': [
|
||||||
|
'|',
|
||||||
|
'&',
|
||||||
|
('res_id', 'in', model.field_id.ids),
|
||||||
|
('name', '=', 'ir.model.fields,field_description'),
|
||||||
|
'&',
|
||||||
|
('res_id', '=', model.id),
|
||||||
|
('name', '=', 'ir.model,name')
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
@api.multi
|
@api.multi
|
||||||
def action_create(self):
|
def action_create(self):
|
||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
|
@ -331,7 +365,8 @@ class BveView(models.Model):
|
||||||
'ttype': field.ttype,
|
'ttype': field.ttype,
|
||||||
'selection': field.selection,
|
'selection': field.selection,
|
||||||
'size': field.size,
|
'size': field.size,
|
||||||
'state': 'manual'
|
'state': 'manual',
|
||||||
|
'readonly': True
|
||||||
}
|
}
|
||||||
if vals['ttype'] == 'monetary':
|
if vals['ttype'] == 'monetary':
|
||||||
vals.update({'ttype': 'float'})
|
vals.update({'ttype': 'float'})
|
||||||
|
@ -391,11 +426,11 @@ class BveView(models.Model):
|
||||||
has_menus = False
|
has_menus = False
|
||||||
if self.action_id:
|
if self.action_id:
|
||||||
action = 'ir.actions.act_window,%d' % (self.action_id.id,)
|
action = 'ir.actions.act_window,%d' % (self.action_id.id,)
|
||||||
menus = self.env['ir.ui.menu'].sudo().search(
|
menus = self.env['ir.ui.menu'].sudo().search([
|
||||||
[('action', '=', action)]
|
('action', '=', action)
|
||||||
)
|
])
|
||||||
has_menus = True if menus else False
|
has_menus = True if menus else False
|
||||||
menus.sudo().unlink()
|
menus.unlink()
|
||||||
|
|
||||||
if self.action_id.view_id:
|
if self.action_id.view_id:
|
||||||
self.action_id.view_id.sudo().unlink()
|
self.action_id.view_id.sudo().unlink()
|
||||||
|
@ -403,10 +438,11 @@ class BveView(models.Model):
|
||||||
|
|
||||||
self.env['ir.ui.view'].sudo().search(
|
self.env['ir.ui.view'].sudo().search(
|
||||||
[('model', '=', self.model_name)]).unlink()
|
[('model', '=', self.model_name)]).unlink()
|
||||||
ir_models = self.env['ir.model'].sudo().search(
|
ir_models = self.env['ir.model'].sudo().search([
|
||||||
[('model', '=', self.model_name)])
|
('model', '=', self.model_name)
|
||||||
|
])
|
||||||
for model in ir_models:
|
for model in ir_models:
|
||||||
model.sudo().unlink()
|
model.unlink()
|
||||||
|
|
||||||
table_name = self.model_name.replace('.', '_')
|
table_name = self.model_name.replace('.', '_')
|
||||||
tools.drop_view_if_exists(self.env.cr, table_name)
|
tools.drop_view_if_exists(self.env.cr, table_name)
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from odoo import api, models
|
from odoo import api, models, registry
|
||||||
|
|
||||||
NO_BI_MODELS = [
|
NO_BI_MODELS = [
|
||||||
'temp.range',
|
'temp.range',
|
||||||
|
@ -112,7 +111,7 @@ class IrModel(models.Model):
|
||||||
|
|
||||||
def get_model_list(model_ids):
|
def get_model_list(model_ids):
|
||||||
model_list = []
|
model_list = []
|
||||||
domain = [('model_id', 'in', model_ids.values()),
|
domain = [('model_id', 'in', list(model_ids.values())),
|
||||||
('store', '=', True),
|
('store', '=', True),
|
||||||
('ttype', 'in', ['many2one'])]
|
('ttype', 'in', ['many2one'])]
|
||||||
filtered_fields = self._search_fields(domain)
|
filtered_fields = self._search_fields(domain)
|
||||||
|
@ -128,7 +127,7 @@ class IrModel(models.Model):
|
||||||
|
|
||||||
def get_relation_list(model_ids, model_names):
|
def get_relation_list(model_ids, model_names):
|
||||||
relation_list = []
|
relation_list = []
|
||||||
domain = [('relation', 'in', model_names.values()),
|
domain = [('relation', 'in', list(model_names.values())),
|
||||||
('store', '=', True),
|
('store', '=', True),
|
||||||
('ttype', 'in', ['many2one'])]
|
('ttype', 'in', ['many2one'])]
|
||||||
filtered_fields = self._search_fields(domain)
|
filtered_fields = self._search_fields(domain)
|
||||||
|
@ -166,7 +165,7 @@ class IrModel(models.Model):
|
||||||
return field_list
|
return field_list
|
||||||
|
|
||||||
def _get_list_id(model_ids, fields):
|
def _get_list_id(model_ids, fields):
|
||||||
list_model = model_ids.values()
|
list_model = list(model_ids.values())
|
||||||
list_model += _get_field(fields, 'table_alias', 'model_id')
|
list_model += _get_field(fields, 'table_alias', 'model_id')
|
||||||
return list_model
|
return list_model
|
||||||
|
|
||||||
|
@ -236,9 +235,9 @@ class IrModel(models.Model):
|
||||||
join_nodes = _get_join_nodes_dict(model_ids, new_field)
|
join_nodes = _get_join_nodes_dict(model_ids, new_field)
|
||||||
join_nodes = remove_duplicate_nodes(join_nodes)
|
join_nodes = remove_duplicate_nodes(join_nodes)
|
||||||
|
|
||||||
return filter(
|
return list(filter(
|
||||||
lambda x: 'id' not in x or
|
lambda x: 'id' not in x or
|
||||||
(x['table_alias'], x['id']) not in keys, join_nodes)
|
(x['table_alias'], x['id']) not in keys, join_nodes))
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def get_fields(self, model_id):
|
def get_fields(self, model_id):
|
||||||
|
@ -284,9 +283,9 @@ class IrModel(models.Model):
|
||||||
# # update registry
|
# # update registry
|
||||||
if self._context.get('bve'):
|
if self._context.get('bve'):
|
||||||
# setup models; this reloads custom models in registry
|
# setup models; this reloads custom models in registry
|
||||||
self.pool.setup_models(self._cr, partial=(not self.pool.ready))
|
self.pool.setup_models(self._cr)
|
||||||
|
|
||||||
# signal that registry has changed
|
# signal that registry has changed
|
||||||
self.pool.signal_registry_change()
|
registry(self.env.cr.dbname).signal_changes()
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
|
@ -1,39 +1,123 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2017-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from odoo import api, models
|
import logging
|
||||||
|
|
||||||
|
from odoo import _, api, models, tools
|
||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
from odoo.tools.translate import _
|
|
||||||
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
@api.model
|
||||||
|
def _bi_view(_name):
|
||||||
|
return _name[0:6] == 'x_bve.'
|
||||||
|
|
||||||
|
|
||||||
|
@api.model_cr_context
|
||||||
|
def _auto_init(self):
|
||||||
|
""" Initialize the database schema of ``self``:
|
||||||
|
- create the corresponding table,
|
||||||
|
- create/update the necessary columns/tables for fields,
|
||||||
|
- initialize new columns on existing rows,
|
||||||
|
- add the SQL constraints given on the model,
|
||||||
|
- add the indexes on indexed fields,
|
||||||
|
|
||||||
|
Also prepare post-init stuff to:
|
||||||
|
- add foreign key constraints,
|
||||||
|
- reflect models, fields, relations and constraints,
|
||||||
|
- mark fields to recompute on existing records.
|
||||||
|
|
||||||
|
Note: you should not override this method. Instead, you can modify
|
||||||
|
the model's database schema by overriding method :meth:`~.init`,
|
||||||
|
which is called right after this one.
|
||||||
|
"""
|
||||||
|
# This monkey patch is meant to fix an error (probably
|
||||||
|
# introduced by https://github.com/odoo/odoo/pull/15412), while
|
||||||
|
# running an update all. The _auto_init() method invoked during
|
||||||
|
# an update all is the one of BaseModel, and not the one of Base.
|
||||||
|
|
||||||
|
# START OF patch
|
||||||
|
# TODO: find better ways to do this patch
|
||||||
|
if _bi_view(self._name):
|
||||||
|
return
|
||||||
|
# END of patch
|
||||||
|
|
||||||
|
models.raise_on_invalid_object_name(self._name)
|
||||||
|
|
||||||
|
# This prevents anything called by this method (in particular default
|
||||||
|
# values) from prefetching a field for which the corresponding column
|
||||||
|
# has not been added in database yet!
|
||||||
|
self = self.with_context(prefetch_fields=False)
|
||||||
|
|
||||||
|
self.pool.post_init(self._reflect)
|
||||||
|
|
||||||
|
cr = self._cr
|
||||||
|
parent_store_compute = False
|
||||||
|
update_custom_fields = self._context.get('update_custom_fields', False)
|
||||||
|
must_create_table = not tools.table_exists(cr, self._table)
|
||||||
|
|
||||||
|
if self._auto:
|
||||||
|
if must_create_table:
|
||||||
|
tools.create_model_table(cr, self._table, self._description)
|
||||||
|
|
||||||
|
if self._parent_store:
|
||||||
|
if not tools.column_exists(cr, self._table, 'parent_left'):
|
||||||
|
self._create_parent_columns()
|
||||||
|
parent_store_compute = True
|
||||||
|
|
||||||
|
self._check_removed_columns(log=False)
|
||||||
|
|
||||||
|
# update the database schema for fields
|
||||||
|
columns = tools.table_columns(cr, self._table)
|
||||||
|
|
||||||
|
def recompute(field):
|
||||||
|
_logger.info("Storing computed values of %s", field)
|
||||||
|
recs = self.with_context(active_test=False).search([])
|
||||||
|
recs._recompute_todo(field)
|
||||||
|
|
||||||
|
for field in self._fields.values():
|
||||||
|
if not field.store:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if field.manual and not update_custom_fields:
|
||||||
|
continue # don't update custom fields
|
||||||
|
|
||||||
|
new = field.update_db(self, columns)
|
||||||
|
if new and field.compute:
|
||||||
|
self.pool.post_init(recompute, field)
|
||||||
|
|
||||||
|
if self._auto:
|
||||||
|
self._add_sql_constraints()
|
||||||
|
|
||||||
|
if must_create_table:
|
||||||
|
self._execute_sql()
|
||||||
|
|
||||||
|
if parent_store_compute:
|
||||||
|
self._parent_store_compute()
|
||||||
|
|
||||||
|
|
||||||
|
models.BaseModel._auto_init = _auto_init
|
||||||
|
|
||||||
|
|
||||||
class Base(models.AbstractModel):
|
class Base(models.AbstractModel):
|
||||||
_inherit = 'base'
|
_inherit = 'base'
|
||||||
|
|
||||||
@api.model
|
|
||||||
def _bi_view(self):
|
|
||||||
return self._name[0:6] == 'x_bve.'
|
|
||||||
|
|
||||||
@api.model
|
|
||||||
def _auto_end(self):
|
|
||||||
if not self._bi_view():
|
|
||||||
super(Base, self)._auto_end()
|
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _auto_init(self):
|
def _auto_init(self):
|
||||||
if not self._bi_view():
|
if not _bi_view(self._name):
|
||||||
super(Base, self)._auto_init()
|
super(Base, self)._auto_init()
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _setup_complete(self):
|
def _setup_complete(self):
|
||||||
if not self._bi_view():
|
if not _bi_view(self._name):
|
||||||
super(Base, self)._setup_complete()
|
super(Base, self)._setup_complete()
|
||||||
else:
|
else:
|
||||||
self.pool.models[self._name]._log_access = False
|
self.pool.models[self._name]._log_access = False
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _read_group_process_groupby(self, gb, query):
|
def _read_group_process_groupby(self, gb, query):
|
||||||
if not self._bi_view():
|
if not _bi_view(self._name):
|
||||||
return super(Base, self)._read_group_process_groupby(gb, query)
|
return super(Base, self)._read_group_process_groupby(gb, query)
|
||||||
|
|
||||||
split = gb.split(':')
|
split = gb.split(':')
|
||||||
|
@ -44,18 +128,6 @@ class Base(models.AbstractModel):
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _add_magic_fields(self):
|
def _add_magic_fields(self):
|
||||||
if self._bi_view():
|
if _bi_view(self._name):
|
||||||
self._log_access = False
|
self._log_access = False
|
||||||
return super(Base, self)._add_magic_fields()
|
return super(Base, self)._add_magic_fields()
|
||||||
|
|
||||||
@api.model_cr
|
|
||||||
def _table_exist(self):
|
|
||||||
if not self._bi_view():
|
|
||||||
return super(Base, self)._table_exist()
|
|
||||||
return 1
|
|
||||||
|
|
||||||
# @api.model_cr
|
|
||||||
# def _create_table(self):
|
|
||||||
# if not self._bi_view():
|
|
||||||
# return super(Base, self)._create_table()
|
|
||||||
# return 1
|
|
||||||
|
|
|
@ -83,6 +83,14 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .body .left .class-list.readonly {
|
||||||
|
opacity: .35;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .body .left .class-list .class.readonly {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
.oe_form_field_bi_editor .body .left .class-list .class:hover {
|
.oe_form_field_bi_editor .body .left .class-list .class:hover {
|
||||||
background-color: #7C7BAD;
|
background-color: #7C7BAD;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
|
@ -130,8 +138,13 @@
|
||||||
background-color: #DDD;
|
background-color: #DDD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .body .right .field-list tbody tr.join-node {
|
||||||
|
background-color: #D2D2FF;
|
||||||
|
text-align: center;
|
||||||
|
border-top: 1px solid #DDDDDD;
|
||||||
|
}
|
||||||
|
|
||||||
.oe_form_field_bi_editor .context-menu, .oe_form_field_bi_editor .context-menu ul {
|
.oe_form_field_bi_editor .context-menu, .oe_form_field_bi_editor .context-menu ul {
|
||||||
display: none;
|
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
@ -140,15 +153,26 @@
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 175px;
|
width: 175px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .context-menu .checkbox {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .context-menu .checkbox label {
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oe_form_field_bi_editor .context-menu li {
|
.oe_form_field_bi_editor .context-menu li {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
height: 28px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.oe_form_field_bi_editor .clear-btn {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
.oe_form_field_bi_editor .context-menu li:hover {
|
.oe_form_field_bi_editor .context-menu li:hover {
|
||||||
background-color: #7C7BAD;
|
background-color: #7C7BAD;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
|
@ -166,11 +190,10 @@
|
||||||
margin-top: -24px;
|
margin-top: -24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.clear {
|
.clear {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.displaynone {
|
.oe_bi_view_editor_join_node_dialog li {
|
||||||
display: none;
|
cursor: pointer;
|
||||||
}
|
}
|
|
@ -0,0 +1,305 @@
|
||||||
|
/* Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
|
* License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */
|
||||||
|
|
||||||
|
odoo.define('bi_view_editor.FieldList', function(require) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var core = require('web.core');
|
||||||
|
var qweb = core.qweb;
|
||||||
|
var Widget = require('web.Widget');
|
||||||
|
|
||||||
|
var FieldListContextMenu = Widget.extend({
|
||||||
|
start: function() {
|
||||||
|
var res = this._super.apply(this, arguments);
|
||||||
|
this.$el.mouseleave(function() {
|
||||||
|
$(this).addClass('hidden');
|
||||||
|
});
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
open: function(x, y) {
|
||||||
|
this.$el.css({
|
||||||
|
'left': x + 'px',
|
||||||
|
'top': y + 'px'
|
||||||
|
});
|
||||||
|
this.$el.removeClass('hidden');
|
||||||
|
return _.extend({}, window.Backbone.Events);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var FieldListFieldContextMenu = FieldListContextMenu.extend({
|
||||||
|
template: 'bi_view_editor.FieldList.FieldContextMenu',
|
||||||
|
open: function(x, y, field) {
|
||||||
|
this.$el.find('.checkbox-column').prop('checked', field.column);
|
||||||
|
this.$el.find('.checkbox-row').prop('checked', field.row);
|
||||||
|
this.$el.find('.checkbox-measure').prop('checked', field.measure);
|
||||||
|
this.$el.find('.checkbox-list').prop('checked', field.list);
|
||||||
|
|
||||||
|
var measureable =
|
||||||
|
field.type === "float" ||
|
||||||
|
field.type === "integer" ||
|
||||||
|
field.type === "monetary"
|
||||||
|
;
|
||||||
|
|
||||||
|
this.$el.find('.checkbox-column').attr('disabled', measureable);
|
||||||
|
this.$el.find('.checkbox-row').attr('disabled', measureable);
|
||||||
|
this.$el.find('.checkbox-measure').attr('disabled', !measureable);
|
||||||
|
this.$el.find('.checkbox-list').attr('disabled', false);
|
||||||
|
|
||||||
|
var events = this._super(x, y, field);
|
||||||
|
this.$el.find('input').unbind('change');
|
||||||
|
this.$el.find('input').change(function() {
|
||||||
|
var $checkbox = $(this);
|
||||||
|
var property = $checkbox.attr('data-for');
|
||||||
|
field[property] = $checkbox.is(':checked');
|
||||||
|
events.trigger('change', field);
|
||||||
|
});
|
||||||
|
|
||||||
|
return events;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var FieldListJoinContextMenu = FieldListContextMenu.extend({
|
||||||
|
template: 'bi_view_editor.FieldList.JoinContextMenu',
|
||||||
|
open: function(x, y, node) {
|
||||||
|
this.$el.find('.checkbox-join-left').prop('checked', node.join_left);
|
||||||
|
|
||||||
|
var events = this._super(x, y, node);
|
||||||
|
this.$el.find('input').unbind('change');
|
||||||
|
this.$el.find('input').change(function() {
|
||||||
|
var $checkbox = $(this);
|
||||||
|
var property = $checkbox.attr('data-for');
|
||||||
|
node[property] = $checkbox.is(':checked');
|
||||||
|
events.trigger('change', node);
|
||||||
|
});
|
||||||
|
return events;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var FieldList = Widget.extend({
|
||||||
|
template: 'bi_view_editor.FieldList',
|
||||||
|
events: {
|
||||||
|
'click .delete-button': 'removeClicked',
|
||||||
|
'keyup input[name="description"]': 'keyupDescription'
|
||||||
|
},
|
||||||
|
start: function() {
|
||||||
|
var res = this._super.apply(this, arguments);
|
||||||
|
this.contextmenu = new FieldListFieldContextMenu(this);
|
||||||
|
this.contextmenu.appendTo(this.$el);
|
||||||
|
this.contextmenu_join = new FieldListJoinContextMenu(this);
|
||||||
|
this.contextmenu_join.appendTo(this.$el);
|
||||||
|
this.$table = this.$el.find('tbody');
|
||||||
|
this.mode = null;
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
setMode: function(mode) {
|
||||||
|
if(mode === 'readonly') {
|
||||||
|
this.$el.find('input[type="text"]').attr('disabled', true);
|
||||||
|
this.$el.find(".delete-button:last").addClass('hidden');
|
||||||
|
} else {
|
||||||
|
this.$el.find('input[type="text"]').removeAttr('disabled');
|
||||||
|
this.$el.find(".delete-button:last").removeClass('hidden');
|
||||||
|
}
|
||||||
|
this.mode = mode;
|
||||||
|
},
|
||||||
|
get: function() {
|
||||||
|
return $.makeArray(this.$el.find("tbody tr").map(function () {
|
||||||
|
var field = $(this).data('field');
|
||||||
|
field.description = $(this).find('input[name="description"]').val();
|
||||||
|
return field;
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
getModelIds: function () {
|
||||||
|
var model_ids = {};
|
||||||
|
this.$el.find("tbody tr").each(function () {
|
||||||
|
var data = $(this).data('field');
|
||||||
|
model_ids[data.table_alias] = data.model_id;
|
||||||
|
});
|
||||||
|
return model_ids;
|
||||||
|
},
|
||||||
|
getModelData: function () {
|
||||||
|
var model_data = {};
|
||||||
|
this.$el.find("tbody tr").each(function () {
|
||||||
|
var data = $(this).data('field');
|
||||||
|
model_data[data.table_alias] = {
|
||||||
|
model_id: data.model_id,
|
||||||
|
model_name: data.model_name
|
||||||
|
};
|
||||||
|
});
|
||||||
|
return model_data;
|
||||||
|
},
|
||||||
|
add: function(field) {
|
||||||
|
var self = this;
|
||||||
|
field.row = typeof field.row === 'undefined' ? false : field.row;
|
||||||
|
field.column = typeof field.column === 'undefined' ? false : field.column;
|
||||||
|
field.measure = typeof field.measure === 'undefined' ? false : field.measure;
|
||||||
|
field.list = typeof field.list === 'undefined' ? false : field.list;
|
||||||
|
field._id = typeof field._id === 'undefined' ? _.uniqueId('node_') : field._id;
|
||||||
|
if(field.join_node) {
|
||||||
|
field.join_left = typeof field.join_left === 'undefined' ? false : field.join_left;
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = 0;
|
||||||
|
var name = field.name;
|
||||||
|
while (this.get().filter(function(item) {
|
||||||
|
return item.name === field.name;
|
||||||
|
}).length > 0) {
|
||||||
|
field.name = name + '_' + i;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Render table row
|
||||||
|
var $html = $(qweb.render(field.join_node ? 'bi_view_editor.JoinListItem' : 'bi_view_editor.FieldListItem', {
|
||||||
|
'field': field
|
||||||
|
})).data('field', field).contextmenu(function(e) {
|
||||||
|
var $item = $(this);
|
||||||
|
if(self.mode === 'readonly') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
e.preventDefault();
|
||||||
|
self.openContextMenu($item, e.pageX, e.pageY);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.$el.find('tbody').append($html);
|
||||||
|
|
||||||
|
this.$el.find(".delete-button").addClass('hidden');
|
||||||
|
this.$el.find(".delete-button:last").removeClass('hidden');
|
||||||
|
this.order();
|
||||||
|
},
|
||||||
|
remove: function(id) {
|
||||||
|
var $item = this.$el.find('tr[data-id="' + id + '"]');
|
||||||
|
$item.remove();
|
||||||
|
this.cleanJoinNodes();
|
||||||
|
this.$el.find(".delete-button").addClass('hidden');
|
||||||
|
this.$el.find(".delete-button:last").removeClass('hidden');
|
||||||
|
this.trigger('removed', id);
|
||||||
|
},
|
||||||
|
set: function(fields) {
|
||||||
|
var set_fields = fields;
|
||||||
|
if (!set_fields) {
|
||||||
|
set_fields = [];
|
||||||
|
}
|
||||||
|
this.$el.find('tbody tr').remove();
|
||||||
|
for(var i = 0; i < set_fields.length; i++) {
|
||||||
|
this.add(set_fields[i]);
|
||||||
|
}
|
||||||
|
this.$el.find(".delete-button").addClass('hidden');
|
||||||
|
this.$el.find(".delete-button:last").removeClass('hidden');
|
||||||
|
},
|
||||||
|
openContextMenu: function($item, x, y) {
|
||||||
|
var field = $item.data('field');
|
||||||
|
var contextmenu = field.join_node ? this.contextmenu_join : this.contextmenu;
|
||||||
|
// Temporary disable contextmenu for join node (until left join is implemented)
|
||||||
|
if (field.join_node) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
contextmenu.open(x - 20, y - 20, $item.data('field')).on('change', function(f) {
|
||||||
|
$item.data('field', f);
|
||||||
|
this.refreshItem($item);
|
||||||
|
this.trigger('updated');
|
||||||
|
}.bind(this));
|
||||||
|
},
|
||||||
|
refreshItem: function($item) {
|
||||||
|
var data = $item.data('field');
|
||||||
|
var $attributes = $item.find('span[data-for], img[data-for]');
|
||||||
|
$.each($attributes, function() {
|
||||||
|
var $attribute = $(this);
|
||||||
|
var value = data[$attribute.attr('data-for')];
|
||||||
|
if(value) {
|
||||||
|
$attribute.removeClass('hidden');
|
||||||
|
} else {
|
||||||
|
$attribute.addClass('hidden');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
removeClicked: function(e) {
|
||||||
|
var $button = $(e.currentTarget);
|
||||||
|
var id = $button.attr('data-id');
|
||||||
|
this.remove(id);
|
||||||
|
},
|
||||||
|
keyupDescription: function() {
|
||||||
|
this.trigger('updated');
|
||||||
|
},
|
||||||
|
cleanJoinNodes: function() {
|
||||||
|
var aliases = $.makeArray(this.$el.find("tbody tr").map(function () {
|
||||||
|
var data = $(this).data('field');
|
||||||
|
return data.table_alias.localeCompare(data.join_node) > 0 ? data.join_node : data.table_alias;
|
||||||
|
}));
|
||||||
|
|
||||||
|
this.$el.find("tbody tr").each(function () {
|
||||||
|
var data = $(this).data('field');
|
||||||
|
if (typeof data.join_node === 'undefined') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var no_alias = data.table_alias.localeCompare(data.join_node) > 0 &&
|
||||||
|
aliases.indexOf(data.table_alias) === -1;
|
||||||
|
if (no_alias ||
|
||||||
|
aliases.indexOf(data.join_node) === -1) {
|
||||||
|
$(this).remove();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getOrder: function() {
|
||||||
|
var items = this.get();
|
||||||
|
var ordered = items.sort(function(a, b) {
|
||||||
|
var res = a.table_alias.localeCompare(b.table_alias);
|
||||||
|
if (res === 0) {
|
||||||
|
var both_join_node = a.join_node && b.join_node;
|
||||||
|
var both_not_join_node = !a.join_node && !b.join_node;
|
||||||
|
if(both_join_node || both_not_join_node) {
|
||||||
|
return 0;
|
||||||
|
} else if(!a.join_node && b.join_node) {
|
||||||
|
if(b.table_alias.localeCompare(b.join_node) > 0) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
} else if(a.join_node && !b.join_node) {
|
||||||
|
if(a.table_alias.localeCompare(a.join_node) > 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
});
|
||||||
|
|
||||||
|
var res = [];
|
||||||
|
_.each(ordered, function(item) {
|
||||||
|
var already_exists = _.findIndex(res, function(f) {
|
||||||
|
return f._id === item._id;
|
||||||
|
}) !== -1;
|
||||||
|
if(already_exists) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
res.push(item);
|
||||||
|
if(item.join_node) {
|
||||||
|
var join_node_fields = _.filter(ordered, function(f) {
|
||||||
|
return f.table_alias === item.join_node && !f.join_node;
|
||||||
|
});
|
||||||
|
res = _.union(res, join_node_fields);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
order: function() {
|
||||||
|
var order = this.getOrder();
|
||||||
|
var $rows = this.$el.find("tbody tr");
|
||||||
|
|
||||||
|
$rows.sort(function(a, b) {
|
||||||
|
var a_index = _.findIndex(order, function(item) {
|
||||||
|
return item._id === $(a).data('field')._id;
|
||||||
|
});
|
||||||
|
var b_index = _.findIndex(order, function(item) {
|
||||||
|
return item._id === $(b).data('field')._id;
|
||||||
|
});
|
||||||
|
return a_index - b_index;
|
||||||
|
}).appendTo(this.$el.find("tbody"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
'FieldList': FieldList,
|
||||||
|
'FieldListContextMenu': FieldListContextMenu,
|
||||||
|
'FieldListFieldContextMenu': FieldListFieldContextMenu,
|
||||||
|
'FieldListJoinContextMenu': FieldListJoinContextMenu
|
||||||
|
};
|
||||||
|
});
|
|
@ -0,0 +1,52 @@
|
||||||
|
/* Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
|
* License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */
|
||||||
|
|
||||||
|
odoo.define('bi_view_editor.JoinNodeDialog', function (require) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var Dialog = require("web.Dialog");
|
||||||
|
var core = require('web.core');
|
||||||
|
var qweb = core.qweb;
|
||||||
|
var _t = core._t;
|
||||||
|
|
||||||
|
var JoinNodeDialog = Dialog.extend({
|
||||||
|
xmlDependencies: Dialog.prototype.xmlDependencies.concat([
|
||||||
|
'/bi_view_editor/static/src/xml/bi_view_editor.xml'
|
||||||
|
]),
|
||||||
|
events: {
|
||||||
|
"click li": "choiceClicked",
|
||||||
|
},
|
||||||
|
init: function(parent, options, choices, model_data) {
|
||||||
|
this.choices = choices;
|
||||||
|
// Prepare data for view
|
||||||
|
for (var i = 0; i < choices.length; i++) {
|
||||||
|
if (choices[i].join_node !== -1 && choices[i].table_alias !== -1) {
|
||||||
|
choices[i].model_name = model_data[choices[i].table_alias].model_name;
|
||||||
|
}
|
||||||
|
choices[i].index = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
var defaults = _.defaults(options || {}, {
|
||||||
|
title: _t("Join..."),
|
||||||
|
dialogClass: 'oe_act_window',
|
||||||
|
$content: qweb.render('bi_view_editor.JoinNodeDialog', {
|
||||||
|
'choices': choices
|
||||||
|
}),
|
||||||
|
buttons: [{
|
||||||
|
text: _t("Cancel"),
|
||||||
|
classes: "btn-default o_form_button_cancel",
|
||||||
|
close: true
|
||||||
|
}],
|
||||||
|
});
|
||||||
|
this._super(parent, defaults);
|
||||||
|
},
|
||||||
|
choiceClicked: function(e) {
|
||||||
|
this.trigger('chosen', {
|
||||||
|
choice: this.choices[$(e.currentTarget).attr('data-index')]
|
||||||
|
});
|
||||||
|
this.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return JoinNodeDialog;
|
||||||
|
});
|
|
@ -0,0 +1,171 @@
|
||||||
|
/* Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
|
* License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */
|
||||||
|
|
||||||
|
odoo.define('bi_view_editor.ModelList', function (require) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var Widget = require('web.Widget');
|
||||||
|
var core = require('web.core');
|
||||||
|
var session = require('web.session');
|
||||||
|
var qweb = core.qweb;
|
||||||
|
|
||||||
|
var ModelList = Widget.extend({
|
||||||
|
template: 'bi_view_editor.ModelList',
|
||||||
|
events: {
|
||||||
|
'keyup .search-bar > input': 'filterChanged'
|
||||||
|
},
|
||||||
|
init: function(parent) {
|
||||||
|
var res = this._super(parent);
|
||||||
|
this.active_models = [];
|
||||||
|
this.cache_fields = {};
|
||||||
|
this.current_filter = '';
|
||||||
|
this.mode = null;
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
setMode: function(mode) {
|
||||||
|
if(mode === 'readonly') {
|
||||||
|
this.$el.find('.search-bar').attr('disabled', true);
|
||||||
|
this.$el.find('.class-list, .class').addClass('readonly');
|
||||||
|
} else {
|
||||||
|
this.$el.find('.search-bar').attr('disabled', false);
|
||||||
|
this.$el.find('.class-list, .class').removeClass('readonly');
|
||||||
|
}
|
||||||
|
this.mode = mode;
|
||||||
|
},
|
||||||
|
isActive: function(id) {
|
||||||
|
return this.active_models.indexOf(id) !== -1;
|
||||||
|
},
|
||||||
|
removeAsActive: function(id) {
|
||||||
|
var i = this.active_models.indexOf(id);
|
||||||
|
this.active_models.splice(i, 1);
|
||||||
|
},
|
||||||
|
addAsActive: function(id) {
|
||||||
|
this.active_models.push(id);
|
||||||
|
},
|
||||||
|
loadModels: function(model_ids) {
|
||||||
|
if (model_ids) {
|
||||||
|
return this._rpc({
|
||||||
|
model: 'ir.model',
|
||||||
|
method: 'get_related_models',
|
||||||
|
args: [model_ids],
|
||||||
|
context: {
|
||||||
|
lang: session.user_context.lang
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return this._rpc({
|
||||||
|
model: 'ir.model',
|
||||||
|
method: 'get_models',
|
||||||
|
context: {
|
||||||
|
lang: session.user_context.lang
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
loadFields: function(model_id) {
|
||||||
|
if (!(model_id in this.cache_fields)) {
|
||||||
|
var deferred = this._rpc({
|
||||||
|
model: 'ir.model',
|
||||||
|
method: 'get_fields',
|
||||||
|
args: [model_id],
|
||||||
|
context: {
|
||||||
|
lang: session.user_context.lang
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.cache_fields[model_id] = deferred;
|
||||||
|
}
|
||||||
|
return this.cache_fields[model_id];
|
||||||
|
},
|
||||||
|
populateModels: function (models) {
|
||||||
|
var self = this;
|
||||||
|
this.$el.find(".class-list").html('');
|
||||||
|
|
||||||
|
_.each(models, function(model) {
|
||||||
|
var $html = $(qweb.render('bi_view_editor.ModelListItem', {
|
||||||
|
'id': model.id,
|
||||||
|
'model': model.model,
|
||||||
|
'name': model.name
|
||||||
|
}));
|
||||||
|
$html.find('.class').data('model', model).click(function() {
|
||||||
|
self.modelClicked($(this));
|
||||||
|
});
|
||||||
|
self.$el.find(".class-list").append($html);
|
||||||
|
|
||||||
|
if (self.isActive(model.id)) {
|
||||||
|
self.loadFields(model.id).done(function(fields) {
|
||||||
|
self.populateFields(fields, model.id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
populateFields: function(fields, model_id) {
|
||||||
|
var self = this;
|
||||||
|
if(!model_id && fields.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var data_model_id = model_id;
|
||||||
|
if(!data_model_id) {
|
||||||
|
data_model_id = fields[0].model_id;
|
||||||
|
}
|
||||||
|
var $model_item = this.$el.find(".class[data-id='" + data_model_id + "']");
|
||||||
|
_.each(fields, function(field) {
|
||||||
|
var $field = $(qweb.render('bi_view_editor.ModelListFieldItem', {
|
||||||
|
name: field.name,
|
||||||
|
description: field.description
|
||||||
|
})).data('field', field).click(function() {
|
||||||
|
self.fieldClicked($(this));
|
||||||
|
}).draggable({
|
||||||
|
'revert': 'invalid',
|
||||||
|
'scroll': false,
|
||||||
|
'helper': 'clone',
|
||||||
|
'appendTo': 'body',
|
||||||
|
'containment': 'window'
|
||||||
|
});
|
||||||
|
$model_item.after($field);
|
||||||
|
|
||||||
|
});
|
||||||
|
},
|
||||||
|
modelClicked: function($el) {
|
||||||
|
if (this.mode === 'readonly') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var model = $el.data('model');
|
||||||
|
$el.parent().find('.field').remove();
|
||||||
|
if(this.isActive(model.id)) {
|
||||||
|
this.removeAsActive(model.id);
|
||||||
|
} else {
|
||||||
|
this.addAsActive(model.id);
|
||||||
|
this.loadFields(model.id).done(function(fields) {
|
||||||
|
this.populateFields(fields, model.id);
|
||||||
|
}.bind(this));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fieldClicked: function($el) {
|
||||||
|
if (this.mode === 'readonly') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.trigger('field_clicked', $el.data('field'));
|
||||||
|
},
|
||||||
|
filterChanged: function(e) {
|
||||||
|
var $input = $(e.target);
|
||||||
|
this.filter($input.val());
|
||||||
|
},
|
||||||
|
filter: function(value) {
|
||||||
|
this.active_models = [];
|
||||||
|
this.$el.find('.field').remove();
|
||||||
|
var val = typeof value === 'undefined' ? this.current_filter : value.toLowerCase();
|
||||||
|
this.$el.find(".class").each(function() {
|
||||||
|
var data = $(this).data('model');
|
||||||
|
if (data.name.toLowerCase().indexOf(val) === -1 &&
|
||||||
|
data.model.toLowerCase().indexOf(val) === -1) {
|
||||||
|
$(this).addClass('hidden');
|
||||||
|
} else {
|
||||||
|
$(this).removeClass('hidden');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.current_filter = val;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return ModelList;
|
||||||
|
|
||||||
|
});
|
|
@ -0,0 +1,143 @@
|
||||||
|
/* Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
||||||
|
* License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */
|
||||||
|
|
||||||
|
odoo.define('bi_view_editor', function (require) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var JoinNodeDialog = require('bi_view_editor.JoinNodeDialog');
|
||||||
|
var ModelList = require('bi_view_editor.ModelList');
|
||||||
|
var FieldList = require('bi_view_editor.FieldList').FieldList;
|
||||||
|
|
||||||
|
var AbstractField = require('web.AbstractField');
|
||||||
|
var Data = require('web.data');
|
||||||
|
var field_registry = require('web.field_registry');
|
||||||
|
|
||||||
|
var BiViewEditor = AbstractField.extend({
|
||||||
|
template: "bi_view_editor.Frame",
|
||||||
|
events: {
|
||||||
|
"click .clear-btn": "clear"
|
||||||
|
},
|
||||||
|
start: function() {
|
||||||
|
var self = this;
|
||||||
|
var res = this._super.apply(this, arguments);
|
||||||
|
|
||||||
|
// Init ModelList
|
||||||
|
this.model_list = new ModelList(this);
|
||||||
|
this.model_list.appendTo(this.$(".body > .left"));
|
||||||
|
this.model_list.on('field_clicked', this, function(field) {
|
||||||
|
self.addField(_.extend({}, field));
|
||||||
|
});
|
||||||
|
|
||||||
|
// Init FieldList
|
||||||
|
this.field_list = new FieldList(this);
|
||||||
|
this.field_list.appendTo(this.$(".body > .right"));
|
||||||
|
this.field_list.on('removed', this, this.fieldListRemoved);
|
||||||
|
this.field_list.on('updated', this, this.fieldListChanged);
|
||||||
|
|
||||||
|
this.$el.find(".body > .right").droppable({
|
||||||
|
accept: "div.class-list div.field",
|
||||||
|
drop: function (event, ui) {
|
||||||
|
self.addField(_.extend({}, ui.draggable.data('field')));
|
||||||
|
ui.draggable.draggable('option', 'revert', false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.on("change:effective_readonly", this, function() {
|
||||||
|
this.updateMode();
|
||||||
|
});
|
||||||
|
this.renderValue();
|
||||||
|
this.loadAndPopulateModelList();
|
||||||
|
this.updateMode();
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
clear: function() {
|
||||||
|
if (this.mode !== 'readonly') {
|
||||||
|
this.field_list.set([]);
|
||||||
|
this.loadAndPopulateModelList();
|
||||||
|
this._setValue(JSON.stringify(this.field_list.get()));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fieldListChanged: function() {
|
||||||
|
this._setValue(JSON.stringify(this.field_list.get()));
|
||||||
|
},
|
||||||
|
fieldListRemoved: function() {
|
||||||
|
this.loadAndPopulateModelList();
|
||||||
|
this._setValue(JSON.stringify(this.field_list.get()));
|
||||||
|
},
|
||||||
|
renderValue: function() {
|
||||||
|
this.field_list.set(JSON.parse(this.value));
|
||||||
|
},
|
||||||
|
updateMode: function () {
|
||||||
|
if (this.mode === 'readonly') {
|
||||||
|
this.$el.find('.clear-btn').addClass('hidden');
|
||||||
|
this.$el.find(".body .right").droppable("option", "disabled", true);
|
||||||
|
} else {
|
||||||
|
this.$el.find('.clear-btn').removeClass('hidden');
|
||||||
|
this.$el.find('.body .right').droppable('option', 'disabled', false);
|
||||||
|
}
|
||||||
|
this.field_list.setMode(this.mode);
|
||||||
|
this.model_list.setMode(this.mode);
|
||||||
|
},
|
||||||
|
loadAndPopulateModelList: function() {
|
||||||
|
var model_ids = null;
|
||||||
|
if (this.field_list.get().length > 0) {
|
||||||
|
model_ids = this.field_list.getModelIds();
|
||||||
|
}
|
||||||
|
this.model_list.loadModels(model_ids).done(function(models) {
|
||||||
|
this.model_list.populateModels(models);
|
||||||
|
}.bind(this));
|
||||||
|
},
|
||||||
|
getTableAlias: function(field) {
|
||||||
|
if (typeof field.table_alias === 'undefined') {
|
||||||
|
var model_ids = this.field_list.getModelIds();
|
||||||
|
var n = 0;
|
||||||
|
while (typeof model_ids["t" + n] !== 'undefined') {
|
||||||
|
n++;
|
||||||
|
}
|
||||||
|
return "t" + n;
|
||||||
|
}
|
||||||
|
return field.table_alias;
|
||||||
|
},
|
||||||
|
addFieldAndJoinNode: function(field, join_node) {
|
||||||
|
if (join_node.join_node === -1 || join_node.table_alias === -1) {
|
||||||
|
field.table_alias = this.getTableAlias(field);
|
||||||
|
if (join_node.join_node === -1) {
|
||||||
|
join_node.join_node = field.table_alias;
|
||||||
|
} else {
|
||||||
|
join_node.table_alias = field.table_alias;
|
||||||
|
}
|
||||||
|
this.field_list.add(join_node);
|
||||||
|
} else {
|
||||||
|
field.table_alias = join_node.table_alias;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.field_list.add(field);
|
||||||
|
this.loadAndPopulateModelList();
|
||||||
|
this._setValue(JSON.stringify(this.field_list.get()));
|
||||||
|
},
|
||||||
|
addField: function(field) {
|
||||||
|
var data = _.extend({}, field);
|
||||||
|
var model = new Data.DataSet(this, "ir.model");
|
||||||
|
var field_data = this.field_list.get();
|
||||||
|
model.call('get_join_nodes', [field_data, data]).then(function(result) {
|
||||||
|
if (result.length === 1) {
|
||||||
|
this.addFieldAndJoinNode(data, result[0]);
|
||||||
|
} else if (result.length > 1) {
|
||||||
|
var dialog = new JoinNodeDialog(this, {}, result, this.field_list.getModelData());
|
||||||
|
dialog.open().on('chosen', this, function(e) {
|
||||||
|
this.addFieldAndJoinNode(data, e.choice);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
var table_alias = this.getTableAlias(data);
|
||||||
|
data.table_alias = table_alias;
|
||||||
|
this.field_list.add(data);
|
||||||
|
this.loadAndPopulateModelList();
|
||||||
|
this._setValue(JSON.stringify(this.field_list.get()));
|
||||||
|
}
|
||||||
|
}.bind(this));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
field_registry.add('BVEEditor', BiViewEditor);
|
||||||
|
|
||||||
|
});
|
|
@ -1,445 +0,0 @@
|
||||||
odoo.define('bi_view_editor', function (require) {
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var Core = require("web.core");
|
|
||||||
var FormCommon = require('web.form_common');
|
|
||||||
var Model = require('web.Model');
|
|
||||||
var Data = require('web.data');
|
|
||||||
var Widget = require('web.Widget');
|
|
||||||
var Dialog = require("web.Dialog");
|
|
||||||
var _t = Core._t;
|
|
||||||
|
|
||||||
var JoinNodePopup = Widget.extend({
|
|
||||||
template: "JoinNodePopup",
|
|
||||||
start: function() {
|
|
||||||
var self = this;
|
|
||||||
},
|
|
||||||
|
|
||||||
display_popup: function(choices, model_data, callback, callback_data) {
|
|
||||||
var self = this;
|
|
||||||
this.renderElement();
|
|
||||||
var joinnodes = this.$el.find('#join-nodes');
|
|
||||||
joinnodes.empty();
|
|
||||||
for (var i=0; i<choices.length; i++) {
|
|
||||||
var description = "";
|
|
||||||
if (choices[i].join_node !== -1 && choices[i].table_alias !== -1) {
|
|
||||||
description = _t("Use the field on model") + " <b>" + model_data[choices[i].table_alias].model_name + "</b>";
|
|
||||||
} else {
|
|
||||||
var new_str = "";
|
|
||||||
if (choices[i].join_node !== -1) {
|
|
||||||
new_str = "<b>" + _t("new") + "</b> ";
|
|
||||||
}
|
|
||||||
description = _t("<b>Join</b> using the field") + " <u><b>" + choices[i].description + "</b></u> " + _t("on ") + new_str + _t("model") +" <b>" + choices[i].model_name + "</b>";
|
|
||||||
}
|
|
||||||
joinnodes.append($('<a><input type="radio">' + description+ '</a>')
|
|
||||||
.data('idx', i)
|
|
||||||
.wrap('<p></p>')
|
|
||||||
.parent());
|
|
||||||
}
|
|
||||||
var dialog = new Dialog(this, {
|
|
||||||
dialogClass: 'oe_act_window',
|
|
||||||
title: _t("Choose join node"),
|
|
||||||
$content: this.$el,
|
|
||||||
buttons: [{text: _t("Cancel"),
|
|
||||||
classes: "btn-default o_form_button_cancel",
|
|
||||||
close: true
|
|
||||||
}]
|
|
||||||
}).open();
|
|
||||||
|
|
||||||
joinnodes.find('a').click(function() {
|
|
||||||
callback(callback_data, choices[$(this).data('idx')]);
|
|
||||||
dialog.close();
|
|
||||||
});
|
|
||||||
|
|
||||||
this.start();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var BiViewEditor = FormCommon.AbstractField.extend({
|
|
||||||
template: "BVEEditor",
|
|
||||||
activeModelMenus: [],
|
|
||||||
currentFilter: "",
|
|
||||||
init: function() {
|
|
||||||
this._super.apply(this, arguments);
|
|
||||||
},
|
|
||||||
start: function() {
|
|
||||||
this._super();
|
|
||||||
this.on("change:effective_readonly", this, function() {
|
|
||||||
this.display_field();
|
|
||||||
this.render_value();
|
|
||||||
});
|
|
||||||
this.display_field();
|
|
||||||
this.render_value();
|
|
||||||
},
|
|
||||||
display_field: function () {
|
|
||||||
var self = this;
|
|
||||||
this.$el.find(".body .right").droppable({
|
|
||||||
accept: "div.class-list div.field",
|
|
||||||
drop: function (event, ui) {
|
|
||||||
self.add_field(ui.draggable);
|
|
||||||
ui.draggable.draggable('option', 'revert', false );
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (!this.get("effective_readonly")) {
|
|
||||||
this.$el.find('.search-bar').attr('disabled', false);
|
|
||||||
this.$el.find('.class-list').css('opacity', '1');
|
|
||||||
this.$el.find('.class-list .class').css('cursor', 'pointer');
|
|
||||||
this.$el.find(".body .right").droppable("option", "disabled", false);
|
|
||||||
this.$el.find('#clear').css('display', 'inline-block').click(function () {
|
|
||||||
self.set_fields([]);
|
|
||||||
self.internal_set_value('[]');
|
|
||||||
});
|
|
||||||
this.$el.find('.search-bar input').keyup(function(e) {
|
|
||||||
//Local filter
|
|
||||||
self.filter($(this).val());
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.$el.find(".body .right").droppable("option", "disabled", true);
|
|
||||||
this.$el.find('#clear').css('display', 'none');
|
|
||||||
this.$el.find('.search-bar').attr('disabled', true);
|
|
||||||
this.$el.find('.class-list').css('opacity', '.35');
|
|
||||||
this.$el.find('.class-list .class').css('cursor', 'default');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
filter: function(val) {
|
|
||||||
val = (typeof val !== 'undefined') ? val.toLowerCase() : this.currentFilter;
|
|
||||||
this.currentFilter = val;
|
|
||||||
this.$el.find(".class-list .class-container").each(function() {
|
|
||||||
var modelData = $(this).find(".class").data('model-data');
|
|
||||||
//TODO: filter on all model fields (name, technical name, etc)
|
|
||||||
|
|
||||||
if(typeof modelData === 'undefined' || (modelData.name.toLowerCase().indexOf(val) === -1 && modelData.model.toLowerCase().indexOf(val) === -1))
|
|
||||||
$(this).hide();
|
|
||||||
else
|
|
||||||
$(this).show();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
get_field_icons: function(field) {
|
|
||||||
var icons = "";
|
|
||||||
if(field.column)
|
|
||||||
icons += "<span class='fa fa-columns' title='Column'></span> ";
|
|
||||||
if(field.row)
|
|
||||||
icons += "<span class='fa fa-bars' title='Row'></span> ";
|
|
||||||
if(field.measure)
|
|
||||||
icons += "<span class='fa fa-bar-chart-o' title='Measure'></span> ";
|
|
||||||
if(field.list)
|
|
||||||
icons += "<span class='fa fa-list' title='List'></span> ";
|
|
||||||
|
|
||||||
return icons;
|
|
||||||
},
|
|
||||||
update_field_view: function(row) {
|
|
||||||
row.find("td:nth-child(3)").html(this.get_field_icons(row.data('field-data')));
|
|
||||||
},
|
|
||||||
render_value: function() {
|
|
||||||
this.set_fields(JSON.parse(this.get('value')));
|
|
||||||
},
|
|
||||||
load_classes: function(scrollTo) {
|
|
||||||
scrollTo = (typeof scrollTo === 'undefined') ? false : scrollTo;
|
|
||||||
var self = this;
|
|
||||||
var model = new Model("ir.model");
|
|
||||||
if (this.$el.find(".field-list tbody tr").length > 0) {
|
|
||||||
model.call("get_related_models", [this.get_model_ids()], { context: new Data.CompoundContext() }).then(function(result) {
|
|
||||||
self.show_classes(result);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
model.call("get_models", { context: new Data.CompoundContext() }).then(function(result) {
|
|
||||||
self.show_classes(result);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
show_classes: function (result) {
|
|
||||||
var self = this;
|
|
||||||
var model = new Model("ir.model");
|
|
||||||
self.$el.find(".class-list .class").remove();
|
|
||||||
self.$el.find(".class-list .field").remove();
|
|
||||||
var css = this.get('effective_readonly') ? 'cursor: default' : 'cursor: pointer';
|
|
||||||
function addField() {
|
|
||||||
if (!self.get("effective_readonly")) {
|
|
||||||
self.add_field($(this));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function clickHandler(evt) {
|
|
||||||
if(self.get("effective_readonly")) return;
|
|
||||||
var classel = $(this);
|
|
||||||
if (classel.data('bve-processed')) {
|
|
||||||
classel.parent().find('.field').remove();
|
|
||||||
classel.data('bve-processed', false);
|
|
||||||
var index = self.activeModelMenus.indexOf(classel.data('model-data').id);
|
|
||||||
if(index !== -1) self.activeModelMenus.splice(index, 1);
|
|
||||||
} else {
|
|
||||||
self.activeModelMenus.push(classel.data('model-data').id);
|
|
||||||
model.call("get_fields", [classel.data('model-data').id], { context: new Data.CompoundContext() }).then(function(result) {
|
|
||||||
for (var i = 0; i < result.length; i++) {
|
|
||||||
classel.find("#bve-field-" + result[i].name).remove();
|
|
||||||
self._render_field(self, i, result, classel, addField)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
$(this).data('bve-processed', true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function renderFields(result) {
|
|
||||||
if (typeof(result[0]) !== 'undefined') {
|
|
||||||
var item = self.$el.find(".class-list #bve-class-" + result[0].model_id);
|
|
||||||
for (var o = 0; o < result.length; o++) {
|
|
||||||
self._render_field(self, o, result, item, addField)
|
|
||||||
}
|
|
||||||
item.data('bve-processed', true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (var i = 0; i < result.length; i++) {
|
|
||||||
var item = $("<div style=\"" + css + "\" class=\"class\" title=\"" + result[i].model + "\" id=\"bve-class-" + result[i].id + "\">" + result[i].name + "</div>")
|
|
||||||
.data('model-data', result[i])
|
|
||||||
.click(clickHandler)
|
|
||||||
.wrap("<div class=\"class-container\"></div>").parent();
|
|
||||||
self.$el.find(".class-list").append(item);
|
|
||||||
|
|
||||||
var index = self.activeModelMenus.indexOf(item.find(".class").data('model-data').id);
|
|
||||||
if(index !== -1 && !self.get("effective_readonly")) {
|
|
||||||
model.call("get_fields", [self.activeModelMenus[index]], { context: new Data.CompoundContext() }).then(renderFields);
|
|
||||||
}
|
|
||||||
self.filter();
|
|
||||||
}
|
|
||||||
|
|
||||||
},
|
|
||||||
_render_field(_self, _index, _result, _item, _addField) {
|
|
||||||
if(_self.$el.find(".field-list tbody [name=label-" + _result[_index].id + "]").length > 0) return;
|
|
||||||
_item.after($("<div class=\"field\" title=\"" + _result[_index].name + "\" id=\"bve-field-" + _result[_index].name + "\">" + _result[_index].description + "</div>")
|
|
||||||
.data('field-data', _result[_index])
|
|
||||||
.click(_addField)
|
|
||||||
.draggable({
|
|
||||||
'revert': 'invalid',
|
|
||||||
'scroll': false,
|
|
||||||
'helper': 'clone',
|
|
||||||
'appendTo': 'body',
|
|
||||||
'containment': 'window'
|
|
||||||
})
|
|
||||||
);
|
|
||||||
},
|
|
||||||
set_checkbox: function(check, identifier, _contextMenu) {
|
|
||||||
if(check)
|
|
||||||
_contextMenu.find(identifier).attr('checked', true);
|
|
||||||
else
|
|
||||||
_contextMenu.find(identifier).attr('checked', false);
|
|
||||||
},
|
|
||||||
_false_if_undefined: function(to_check) {
|
|
||||||
if (typeof to_check === 'undefined') return false;
|
|
||||||
return to_check;
|
|
||||||
},
|
|
||||||
_true_if_undefined: function(to_check) {
|
|
||||||
if (typeof to_check === 'undefined') return true;
|
|
||||||
return to_check;
|
|
||||||
},
|
|
||||||
add_field_to_table: function(data, options) {
|
|
||||||
var self = this;
|
|
||||||
data.row = self._false_if_undefined(data.row);
|
|
||||||
data.column = self._false_if_undefined(data.column);
|
|
||||||
data.measure = self._false_if_undefined(data.measure);
|
|
||||||
data.list = self._true_if_undefined(data.list);
|
|
||||||
|
|
||||||
var n = 1;
|
|
||||||
var name = data.name;
|
|
||||||
function checkNameMatches(el) { return el.name === data.name;}
|
|
||||||
while ($.grep(self.get_fields(), checkNameMatches).length > 0) {
|
|
||||||
data.name = name + '_' + n;
|
|
||||||
n += 1;
|
|
||||||
}
|
|
||||||
var classes = "";
|
|
||||||
if (typeof data.join_node !== 'undefined') {
|
|
||||||
classes = "join-node displaynone";
|
|
||||||
}
|
|
||||||
var delete_button = "";
|
|
||||||
var disabled = " disabled=\"disabled\" ";
|
|
||||||
if (!this.get("effective_readonly")) {
|
|
||||||
delete_button = "<span id=\"delete-" + data.id + "\" class=\"delete-button fa fa-trash-o\"/>";
|
|
||||||
disabled = "";
|
|
||||||
}
|
|
||||||
|
|
||||||
self.$el.find(".field-list tbody")
|
|
||||||
.append($("<tr class=\"" + classes + "\"><td><input " + disabled + "title=\"" + data.name + " (" + data.model + ")\" type=\"text\" name=\"label-" + data.id + "\" value=\"" + data.description + "\"/></td><td>" + data.model_name + "</td><td>" + self.get_field_icons(data) + "</td><td>" + delete_button + "</td></tr>")
|
|
||||||
.data('field-data', data)
|
|
||||||
.contextmenu(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
if (self.get("effective_readonly")) return;
|
|
||||||
var target = $(e.currentTarget);
|
|
||||||
var currentFieldData = target.data('field-data');
|
|
||||||
|
|
||||||
var contextMenu = self.$el.find(".context-menu");
|
|
||||||
contextMenu.css("left", e.pageX + "px");
|
|
||||||
contextMenu.css("top", e.pageY + "px");
|
|
||||||
contextMenu.mouseleave(function() {
|
|
||||||
contextMenu.hide();
|
|
||||||
});
|
|
||||||
contextMenu.find("li").hover(function() {
|
|
||||||
$(this).find("ul").css("color", "#000");
|
|
||||||
$(this).find("ul").show();
|
|
||||||
}, function() {
|
|
||||||
$(this).find("ul").hide();
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
//Set checkboxes
|
|
||||||
self.set_checkbox(currentFieldData.column, '#column-checkbox', contextMenu);
|
|
||||||
self.set_checkbox(currentFieldData.row, '#row-checkbox', contextMenu);
|
|
||||||
self.set_checkbox(currentFieldData.measure, '#measure-checkbox', contextMenu);
|
|
||||||
self.set_checkbox(currentFieldData.list, '#list-checkbox', contextMenu);
|
|
||||||
|
|
||||||
var to_disable = false;
|
|
||||||
if(currentFieldData.type === "float" || currentFieldData.type === "integer" || currentFieldData.type === "monetary") to_disable = true;
|
|
||||||
var identifiers = [['#column-checkbox', 'column', to_disable], ['#row-checkbox', 'row', to_disable], ['#measure-checkbox', 'measure', !to_disable], ['#list-checkbox', 'list', false]];
|
|
||||||
identifiers.forEach(function (element) {
|
|
||||||
contextMenu.find(element[0]).attr('disabled', element[2]);
|
|
||||||
});
|
|
||||||
|
|
||||||
//Add change events
|
|
||||||
identifiers.forEach(function (element) {
|
|
||||||
contextMenu.find(element[0]).unbind("change");
|
|
||||||
contextMenu.find(element[0]).change(function() {
|
|
||||||
currentFieldData[element[1]] = $(this).is(":checked");
|
|
||||||
target.data('field-data', currentFieldData);
|
|
||||||
self.update_field_view(target);
|
|
||||||
self.internal_set_value(JSON.stringify(self.get_fields()));
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
contextMenu.show();
|
|
||||||
|
|
||||||
$(document).mouseup(function (e) {
|
|
||||||
var container = $(".context-menu");
|
|
||||||
|
|
||||||
// if the target of the click isn't the container nor a descendant of the container
|
|
||||||
if (!container.is(e.target) && container.has(e.target).length === 0)
|
|
||||||
{
|
|
||||||
container.hide();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
self.$el.find('.delete-button').unbind("click");
|
|
||||||
self.$el.find('.delete-button').click(function() {
|
|
||||||
$(this).closest('tr').remove();
|
|
||||||
self.clean_join_nodes();
|
|
||||||
self.internal_set_value(JSON.stringify(self.get_fields()));
|
|
||||||
self.load_classes();
|
|
||||||
self.$el.find(".field-list .delete-button").hide();
|
|
||||||
self.$el.find(".field-list .delete-button:last").show();
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
self.$el.find(".field-list .delete-button").hide();
|
|
||||||
self.$el.find(".field-list .delete-button:last").show();
|
|
||||||
},
|
|
||||||
clean_join_nodes: function () {
|
|
||||||
var aliases = $.makeArray(this.$el.find(".field-list tbody tr").map(function (idx, el) {
|
|
||||||
var d = $(this).data('field-data');
|
|
||||||
return d.table_alias;
|
|
||||||
}));
|
|
||||||
|
|
||||||
this.$el.find(".field-list tbody tr").each(function (idx, el) {
|
|
||||||
var d = $(this).data('field-data');
|
|
||||||
if (typeof d.join_node !== 'undefined' && aliases.indexOf(d.join_node) === -1) {
|
|
||||||
$(this).remove();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
get_model_ids: function () {
|
|
||||||
var model_ids = {};
|
|
||||||
this.$el.find(".field-list tbody tr").each(function (idx, el) {
|
|
||||||
var d = $(this).data('field-data');
|
|
||||||
model_ids[d.table_alias] = d.model_id;
|
|
||||||
});
|
|
||||||
return model_ids;
|
|
||||||
},
|
|
||||||
get_model_data: function () {
|
|
||||||
var model_data = {};
|
|
||||||
this.$el.find(".field-list tbody tr").each(function (idx, el) {
|
|
||||||
var d = $(this).data('field-data');
|
|
||||||
model_data[d.table_alias] = {model_id: d.model_id, model_name: d.model_name};
|
|
||||||
});
|
|
||||||
return model_data;
|
|
||||||
},
|
|
||||||
get_table_alias: function(field) {
|
|
||||||
if (typeof field.table_alias !== 'undefined') {
|
|
||||||
return field.table_alias;
|
|
||||||
} else {
|
|
||||||
var model_ids = this.get_model_ids();
|
|
||||||
var n = 0;
|
|
||||||
while (typeof model_ids["t" + n] !== 'undefined') n++;
|
|
||||||
return "t" + n;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
add_field_and_join_node: function(field, join_node) {
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
var go_to_else = true;
|
|
||||||
if (join_node.join_node === -1 || join_node.table_alias === -1){
|
|
||||||
go_to_else = false;
|
|
||||||
field.table_alias = self.get_table_alias(field);
|
|
||||||
if (join_node.join_node === -1) join_node.join_node = field.table_alias;
|
|
||||||
else join_node.table_alias = field.table_alias;
|
|
||||||
self.add_field_to_table(join_node);
|
|
||||||
}
|
|
||||||
else field.table_alias = join_node.table_alias;
|
|
||||||
|
|
||||||
self.add_field_to_table(field);
|
|
||||||
self.internal_set_value(JSON.stringify(self.get_fields()));
|
|
||||||
self.load_classes(field);
|
|
||||||
},
|
|
||||||
add_field: function(field) {
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
// Quick fix for double click
|
|
||||||
if(self._adding) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
self._adding = true;
|
|
||||||
setTimeout(function() {
|
|
||||||
self._adding = false;
|
|
||||||
}, 1000);
|
|
||||||
// End quick fix
|
|
||||||
|
|
||||||
var data = field.data('field-data');
|
|
||||||
var model = new Model("ir.model");
|
|
||||||
var model_ids = this.get_model_ids();
|
|
||||||
var field_data = this.get_fields();
|
|
||||||
model.call('get_join_nodes', [field_data, data], {context: new Data.CompoundContext()}).then(function(result) {
|
|
||||||
|
|
||||||
if (result.length === 1) {
|
|
||||||
self.add_field_and_join_node(data, result[0]);
|
|
||||||
self.internal_set_value(JSON.stringify(self.get_fields()));
|
|
||||||
} else if (result.length > 1) {
|
|
||||||
var pop = new JoinNodePopup(self);
|
|
||||||
pop.display_popup(result, self.get_model_data(), self.add_field_and_join_node.bind(self), data);
|
|
||||||
} else {
|
|
||||||
// first field and table only.
|
|
||||||
var table_alias = self.get_table_alias(data);
|
|
||||||
data.table_alias = table_alias;
|
|
||||||
self.add_field_to_table(data);
|
|
||||||
self.internal_set_value(JSON.stringify(self.get_fields()));
|
|
||||||
self.load_classes(data);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
get_fields: function() {
|
|
||||||
return $.makeArray(this.$el.find(".field-list tbody tr").map(function (idx, el) {
|
|
||||||
var d = $(this).data('field-data');
|
|
||||||
d.description = $("input[name='label-" + d.id + "']").val();
|
|
||||||
return d;
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
set_fields: function(values) {
|
|
||||||
this.activeModelMenus = [];
|
|
||||||
if (!values) {
|
|
||||||
values = [];
|
|
||||||
}
|
|
||||||
this.$el.find('.field-list tbody tr').remove();
|
|
||||||
for(var i = 0; i < values.length; i++) {
|
|
||||||
this.add_field_to_table(values[i]);
|
|
||||||
}
|
|
||||||
this.load_classes();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Core.form_widget_registry.add('BVEEditor', BiViewEditor);
|
|
||||||
|
|
||||||
});
|
|
|
@ -0,0 +1,183 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<t t-name="bi_view_editor.Frame">
|
||||||
|
<div class="oe_form_field_bi_editor">
|
||||||
|
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="left">
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="left"></div>
|
||||||
|
<div class="right"><button class="clear-btn hidden"><span class="fa fa-eraser"></span> Clear</button></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- Join Node Dialog -->
|
||||||
|
<t t-name="bi_view_editor.JoinNodeDialog">
|
||||||
|
<div class="oe_bi_view_editor_join_node_dialog">
|
||||||
|
<ul class="list-group" >
|
||||||
|
<t t-foreach="choices" t-as="choice">
|
||||||
|
<t t-if="choice.join_node !== -1 and choice.table_alias !== -1">
|
||||||
|
<li class="list-group-item list-group-item-action text-primary" t-attf-data-index="#{choice.index}">
|
||||||
|
<b>Use the existing node</b>
|
||||||
|
</li>
|
||||||
|
</t>
|
||||||
|
<t t-elif="choice.join_node !== -1">
|
||||||
|
<li class="list-group-item list-group-item-action text-success" t-attf-data-index="#{choice.index}">
|
||||||
|
Use the field
|
||||||
|
<b><t t-esc="choice.model_name"/></b>
|
||||||
|
<i class="fa fa-caret-right"/>
|
||||||
|
<b><t t-esc="choice.description"/></b>
|
||||||
|
<span class="badge">new</span>
|
||||||
|
</li>
|
||||||
|
</t>
|
||||||
|
<t t-else="">
|
||||||
|
<li class="list-group-item list-group-item-action" t-attf-data-index="#{choice.index}">
|
||||||
|
Use the field
|
||||||
|
<b><t t-esc="choice.model_name"/></b>
|
||||||
|
<i class="fa fa-caret-right"/>
|
||||||
|
<b><t t-esc="choice.description"/></b>
|
||||||
|
</li>
|
||||||
|
</t>
|
||||||
|
</t>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- ModelList -->
|
||||||
|
<t t-name="bi_view_editor.ModelList">
|
||||||
|
<div>
|
||||||
|
<div class="search-bar">
|
||||||
|
<span class="fa fa-search"></span>
|
||||||
|
<input type="text" class="search-bar" />
|
||||||
|
</div>
|
||||||
|
<div class="class-list">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- ModelListItem -->
|
||||||
|
<t t-name="bi_view_editor.ModelListItem">
|
||||||
|
<div class="class-container">
|
||||||
|
<div class="class" t-attf-title="#{model}" t-attf-data-id="#{id}"><t t-esc="name"/></div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- ModelListFieldItem-->
|
||||||
|
<t t-name="bi_view_editor.ModelListFieldItem">
|
||||||
|
<div class="field" t-attf-title="#{name}" t-attf-data-id="#{name}"><t t-esc="description"/></div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- FieldList -->
|
||||||
|
<t t-name="bi_view_editor.FieldList">
|
||||||
|
<div>
|
||||||
|
<table class="field-list">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Model</th>
|
||||||
|
<th>Options</th>
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- FieldContextMenu -->
|
||||||
|
<t t-name="bi_view_editor.FieldList.FieldContextMenu">
|
||||||
|
<ul class="context-menu hidden">
|
||||||
|
<li>
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" data-for="column" class="checkbox-column"/> Column
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" data-for="row" class="checkbox-row"/> Row
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" data-for="measure" class="checkbox-measure"/> Measure
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" data-for="list" class="checkbox-list"/> List
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- JoinContextMenu -->
|
||||||
|
<t t-name="bi_view_editor.FieldList.JoinContextMenu">
|
||||||
|
<ul class="context-menu hidden">
|
||||||
|
<li>
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" data-for="join_left" class="checkbox-join-left"/> Join Left
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<!-- FieldListItem -->
|
||||||
|
<t t-name="bi_view_editor.FieldListItem">
|
||||||
|
<tr t-attf-data-id="#{field._id}" class="field-node">
|
||||||
|
<td>
|
||||||
|
<input t-attf-data-id="#{field._id}" t-attf-title="#{field.model_name} (#{field.model})" class="form-control input-sm" type="text" name="description" t-attf-value="#{field.description}"/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<t t-esc="field.model_name" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span data-for="column" t-attf-class="#{field.column and 'fa fa-columns' or 'fa fa-columns hidden'}" title='Column'></span>
|
||||||
|
<span data-for="row" t-attf-class="#{field.row and 'fa fa-bars' or 'fa fa-bars hidden'}" title='Row'></span>
|
||||||
|
<span data-for="measure" t-attf-class="#{field.measure and 'fa fa-bar-chart-o' or 'fa fa-bar-chart-o hidden'}" title='Measure'></span>
|
||||||
|
<span data-for="list" t-attf-class="#{field.list and 'fa fa-list' or 'fa fa-list hidden'}" title='List'></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span t-attf-data-id="#{field._id}" class="delete-button fa fa-trash-o"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<t t-name="bi_view_editor.JoinListItem">
|
||||||
|
<tr t-attf-data-id="#{field._id}" class="join-node">
|
||||||
|
<td colspan="4">
|
||||||
|
<input class="hidden" type="text" name="description" t-attf-value="#{field.description}"/>
|
||||||
|
<t t-if="field.join_node > field.table_alias">
|
||||||
|
<b><t t-esc="field.model_name" /></b>
|
||||||
|
<i class="fa fa-caret-right"/>
|
||||||
|
<small><t t-esc="field.description" /></small>
|
||||||
|
</t>
|
||||||
|
<t t-else="">
|
||||||
|
<small><t t-esc="field.description" /></small>
|
||||||
|
<i class="fa fa-caret-left"/>
|
||||||
|
<b><t t-esc="field.model_name" /></b>
|
||||||
|
</t>
|
||||||
|
<span t-attf-class="#{!field.join_left and 'hidden' or ''}" data-for="join_left"><i>(join left)</i></span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</t>
|
||||||
|
</template>
|
|
@ -1,11 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<openerp>
|
<openerp>
|
||||||
<data>
|
<data>
|
||||||
|
|
||||||
<template id="assets_backend" name="bi_view_editor assets" inherit_id="web.assets_backend">
|
<template id="assets_backend" name="bi_view_editor assets" inherit_id="web.assets_backend">
|
||||||
<xpath expr="." position="inside">
|
<xpath expr="." position="inside">
|
||||||
<link rel="stylesheet" href="/bi_view_editor/static/src/css/bve.css"/>
|
<link rel="stylesheet" href="/bi_view_editor/static/src/css/bve.css"/>
|
||||||
<script type="text/javascript" src="/bi_view_editor/static/src/js/bve.js"></script>
|
|
||||||
|
<script type="text/javascript" src="/bi_view_editor/static/src/js/bi_view_editor.js"></script>
|
||||||
|
<script type="text/javascript" src="/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js"></script>
|
||||||
|
<script type="text/javascript" src="/bi_view_editor/static/src/js/bi_view_editor.ModelList.js"></script>
|
||||||
|
<script type="text/javascript" src="/bi_view_editor/static/src/js/bi_view_editor.FieldList.js"></script>
|
||||||
</xpath>
|
</xpath>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,54 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<templates id="template" xml:space="preserve">
|
|
||||||
<t t-name="JoinNodePopup">
|
|
||||||
<div class="oe_form_nosheet">
|
|
||||||
<div id="join-nodes">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</t>
|
|
||||||
|
|
||||||
|
|
||||||
<t t-name="BVEEditor">
|
|
||||||
<div class="oe_form_field_bi_editor">
|
|
||||||
|
|
||||||
<div class="body">
|
|
||||||
|
|
||||||
<div class="left">
|
|
||||||
<div class="search-bar">
|
|
||||||
<span class="fa fa-search"></span>
|
|
||||||
<input type="text" class="search-bar" />
|
|
||||||
</div>
|
|
||||||
<div class="class-list">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="right">
|
|
||||||
<table class="field-list">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Model</th>
|
|
||||||
<th>Options</th>
|
|
||||||
<th></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<div class="clear"></div>
|
|
||||||
</div>
|
|
||||||
<div class="footer">
|
|
||||||
<div class="left"></div>
|
|
||||||
<div class="right"><button id="clear"><span class="fa fa-eraser"></span> Clear</button></div>
|
|
||||||
</div>
|
|
||||||
<ul class="context-menu">
|
|
||||||
|
|
||||||
<li><input type="checkbox" id="column-checkbox"/> Column</li>
|
|
||||||
<li><input type="checkbox" id="row-checkbox"/> Row</li>
|
|
||||||
<li><input type="checkbox" id="measure-checkbox"/> Measure</li>
|
|
||||||
<li><input type="checkbox" id="list-checkbox"/> List</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</t>
|
|
||||||
</templates>
|
|
|
@ -1,5 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from . import test_bi_view
|
from . import test_bi_view
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2017-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from odoo.tests.common import TransactionCase, at_install, post_install
|
from odoo.tests.common import TransactionCase, at_install, post_install
|
||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
|
<record id="action_bi_view_editor_translations" model="ir.actions.act_window">
|
||||||
|
<field name="name">Translations</field>
|
||||||
|
<field name="type">ir.actions.act_window</field>
|
||||||
|
<field name="res_model">ir.translation</field>
|
||||||
|
<field name="view_type">form</field>
|
||||||
|
<field name="domain">[('res_id', '=', active_record.), ('name', '=', 'ir.model.fields,field_description')]</field>
|
||||||
|
<field name="view_id" ref="base.view_translation_dialog_tree"/>
|
||||||
|
</record>
|
||||||
|
|
||||||
<record id="view_bi_view_editor_view_tree" model="ir.ui.view">
|
<record id="view_bi_view_editor_view_tree" model="ir.ui.view">
|
||||||
<field name="model">bve.view</field>
|
<field name="model">bve.view</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
|
@ -22,6 +31,14 @@
|
||||||
<field name="state" widget="statusbar" statusbar_visible="draft,created" statusbar_colors='{"draft":"blue","created":"blue"}'/>
|
<field name="state" widget="statusbar" statusbar_visible="draft,created" statusbar_colors='{"draft":"blue","created":"blue"}'/>
|
||||||
</header>
|
</header>
|
||||||
<sheet>
|
<sheet>
|
||||||
|
<div class="oe_button_box" name="button_box">
|
||||||
|
<button name="action_translations"
|
||||||
|
type="object"
|
||||||
|
states="created"
|
||||||
|
icon="fa-globe"
|
||||||
|
string="Translations"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<h1>
|
<h1>
|
||||||
<field name="name" attrs="{'readonly': [('state','=','created')]}" colspan="4"/>
|
<field name="name" attrs="{'readonly': [('state','=','created')]}" colspan="4"/>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from . import wizard_ir_model_menu_create
|
from . import wizard_ir_model_menu_create
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# Copyright 2017-2018 Onestein (<http://www.onestein.eu>)
|
||||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
||||||
|
|
||||||
from odoo import api, models
|
from odoo import api, models
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue