diff --git a/bi_view_editor/README.rst b/bi_view_editor/README.rst new file mode 100644 index 0000000000..2ee866cc2a --- /dev/null +++ b/bi_view_editor/README.rst @@ -0,0 +1,169 @@ +============== +BI View Editor +============== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.0/bi_view_editor + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-bi_view_editor + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code. + +Purpose: + +* The BI View Editor is used to create reports not already contained in the + standard Odoo, combining data from existing sources. + +* It has been designed to be used by users with little or no knowledge of + the technical architecture of Odoo. Users visually link business objects + and select the fields to visualize. + +* The BI View Editor offers users different types of representations, + including tree, graph, pivot views. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +In the Odoo configuration file add ``bi_view_editor`` in the list +``server_wide_modules``: + +.. code-block:: ini + + [options] + (...) + server_wide_modules = web,bi_view_editor + (...) + +Alternatively specify ``--load=bi_view_editor`` when starting Odoo by command line. + +Optionally it is possible to enable the view of the ER Diagram. For this you +need to install `Graphviz`, an open source graph visualization software: + +.. code-block:: bash + + ``sudo apt-get install graphviz`` + +Usage +===== + +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- Browse trough the business objects in the "Query Builder" tab +- Pick the interesting fields (Drag & Drop) +- For each selected field, right-click on the Options column and select whether + it's a row, column or measure; if you want to remove the field from the list + view, unflag the checkbox ´List´ in the Options column +- Save and click "Generate BI View" +- Click "Open BI View" to view the result + +To access the created BI View with a dedicated menu: + +- If module Dashboard (board) is installed, the standard "Add to My Dashboard" + functionality would be available +- Click "Create a menu" to create a new menu item directly linked to your new + BI view (this feature is available in developer mode); when the BI view is + reset back to draft this menu will be removed, and you will need to re-create + the menu entry. + +A more advanced UI is also available under the "Details" tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN. + +It also possible to improve the IDs generation for new views by adding an +`Over Condition` in the "SQL" tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views. + +Known issues / Roadmap +====================== + +* Non-stored fields and many2many fields are not supported. +* Provide a tutorial (eg. a working example of usage). +* Find better ways to extend the *_auto_init()* without override. +* Possibly avoid the monkey patches. +* Data the user has no access to (e.g. in a multi company situation) can be + viewed by making a view. Would be nice if models available to select when + creating a view are limited to the ones that have intersecting groups. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Onestein + +Contributors +~~~~~~~~~~~~ + +* Simon Janssens +* Diego Luis Neto +* Dennis Sluijk +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* Jordi Ballester Alomar + +Other credits +~~~~~~~~~~~~~ + +Funders +------- + +The development of this module for Odoo 11.0 has been financially supported by: + +* IDEAL Connaissances SAS https://www.idealconnaissances.com + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/bi_view_editor/__init__.py b/bi_view_editor/__init__.py new file mode 100644 index 0000000000..d771dad23f --- /dev/null +++ b/bi_view_editor/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models +from . import wizard +from .hooks import uninstall_hook diff --git a/bi_view_editor/__manifest__.py b/bi_view_editor/__manifest__.py new file mode 100644 index 0000000000..dd4ecf602b --- /dev/null +++ b/bi_view_editor/__manifest__.py @@ -0,0 +1,37 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "BI View Editor", + "summary": "Graphical BI views builder for Odoo", + "images": ["static/description/main_screenshot.png"], + "author": "Onestein,Odoo Community Association (OCA)", + "license": "AGPL-3", + "website": "https://github.com/OCA/reporting-engine", + "category": "Productivity", + "version": "15.0.1.0.0", + "development_status": "Beta", + "depends": ["web"], + "external_dependencies": { + "deb": ["graphviz"], + }, + "data": [ + "security/ir.model.access.csv", + "security/rules.xml", + "views/bve_view.xml", + ], + "assets": { + "web.assets_backend": [ + "bi_view_editor/static/src/css/bve.css", + "bi_view_editor/static/src/js/bi_view_editor.js", + "bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js", + "bi_view_editor/static/src/js/bi_view_editor.ModelList.js", + "bi_view_editor/static/src/js/bi_view_editor.FieldList.js", + ], + "web.assets_qweb": [ + "bi_view_editor/static/src/xml/bi_view_editor.xml", + ], + }, + "uninstall_hook": "uninstall_hook", + "installable": True, +} diff --git a/bi_view_editor/hooks.py b/bi_view_editor/hooks.py new file mode 100644 index 0000000000..617188defe --- /dev/null +++ b/bi_view_editor/hooks.py @@ -0,0 +1,28 @@ +# Copyright 2015-2019 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + + +def uninstall_hook(cr, registry): + # delete dirty data that could cause problems + # while re-installing the module + cr.execute( + """ + delete from ir_model where model like 'x_bve.%' + """ + ) + cr.execute( + """ + delete from bve_view where model_name like 'x_bve.%' + """ + ) + cr.execute( + """ + SELECT 'DROP VIEW ' || table_name + FROM information_schema.views + WHERE table_schema NOT IN ('pg_catalog', 'information_schema') + AND table_name like 'x_bve_%' + """ + ) + results = list(cr.fetchall()) + for result in results: + cr.execute(result[0]) diff --git a/bi_view_editor/i18n/am.po b/bi_view_editor/i18n/am.po new file mode 100644 index 0000000000..62baa9d82d --- /dev/null +++ b/bi_view_editor/i18n/am.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-15 19:59+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ar.po b/bi_view_editor/i18n/ar.po new file mode 100644 index 0000000000..d819ebee26 --- /dev/null +++ b/bi_view_editor/i18n/ar.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "المعرف" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "الاسم" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bg.po b/bi_view_editor/i18n/bg.po new file mode 100644 index 0000000000..55be2fe95f --- /dev/null +++ b/bi_view_editor/i18n/bg.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Създадено на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Име" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bi_view_editor.pot b/bi_view_editor/i18n/bi_view_editor.pot new file mode 100644 index 0000000000..dff614041a --- /dev/null +++ b/bi_view_editor/i18n/bi_view_editor.pot @@ -0,0 +1,557 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Abstract models not supported." +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:0 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__avg +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__over_condition +msgid "" +"Condition to be inserted in the OVER part of the ID's row_number function.\n" +"For instance, 'ORDER BY t1.id' would create IDs ordered in the same way as t1's IDs; otherwise IDs are assigned with no specific order." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Create a Menu" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#: model:ir.model.constraint,message:bi_view_editor.constraint_bve_view_name_uniq +#, 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.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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Error creating the view '{query}':\n" +"{error}" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: {}." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model__id +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create__id +msgid "ID" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:0 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__over_condition +msgid "Over Condition" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__sum +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bs.po b/bi_view_editor/i18n/bs.po new file mode 100644 index 0000000000..a95abca60c --- /dev/null +++ b/bi_view_editor/i18n/bs.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Prikaži naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ca.po b/bi_view_editor/i18n/ca.po new file mode 100644 index 0000000000..4670299455 --- /dev/null +++ b/bi_view_editor/i18n/ca.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 06:04+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creat el" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creat el" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Veure el nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estat" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Usuaris" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/cs.po b/bi_view_editor/i18n/cs.po new file mode 100644 index 0000000000..c245afd1d5 --- /dev/null +++ b/bi_view_editor/i18n/cs.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Vytvořeno" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Zobrazovaný název" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Název" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Zabezpečení" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/da.po b/bi_view_editor/i18n/da.po new file mode 100644 index 0000000000..d457191c15 --- /dev/null +++ b/bi_view_editor/i18n/da.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oprettet den" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vist navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Id" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sikkerhed" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Brugere" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/de.po b/bi_view_editor/i18n/de.po new file mode 100644 index 0000000000..e462816024 --- /dev/null +++ b/bi_view_editor/i18n/de.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Aktion" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Erstellt am:" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Entwurf" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Anzeigename" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Bezeichnung" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Hinweise" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Aktion" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Aktion" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Benutzer" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/el_GR.po b/bi_view_editor/i18n/el_GR.po new file mode 100644 index 0000000000..bae6ea3546 --- /dev/null +++ b/bi_view_editor/i18n/el_GR.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Κωδικός" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/en_GB.po b/bi_view_editor/i18n/en_GB.po new file mode 100644 index 0000000000..2ecc1f832e --- /dev/null +++ b/bi_view_editor/i18n/en_GB.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Created on" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Display Name" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Name" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Security" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es.po b/bi_view_editor/i18n/es.po new file mode 100644 index 0000000000..0a3ec09170 --- /dev/null +++ b/bi_view_editor/i18n/es.po @@ -0,0 +1,575 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Eduardo Rodríguez Crespo , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-08 09:43+0000\n" +"PO-Revision-Date: 2016-06-13 21:28+0000\n" +"Last-Translator: Eduardo Rodríguez Crespo \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Acción" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "Editor de vistas BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "Editor de vistas BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Creado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Vista BI personalizada" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "¡El nombre de las vistas BI personalizadas debe ser único!" + +#. 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 "Vistas BI personalizadas" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Objeto personalizado" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Informes personalizados" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Datos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Nombre del modelo" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Generar vista BI" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Grupos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Nombre del modelo" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notas" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Acción" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Consulta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Acción" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Devolver a estado borrador" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "" +"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 +#: 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 "" +"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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Usuarios" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Vista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"¡No puedes eliminar una vista creada! Devuélvela a estado borrador primero" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/es_AR.po b/bi_view_editor/i18n/es_AR.po new file mode 100644 index 0000000000..dfbfd3f6b1 --- /dev/null +++ b/bi_view_editor/i18n/es_AR.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Mostrar Nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CL.po b/bi_view_editor/i18n/es_CL.po new file mode 100644 index 0000000000..7b753706b0 --- /dev/null +++ b/bi_view_editor/i18n/es_CL.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CO.po b/bi_view_editor/i18n/es_CO.po new file mode 100644 index 0000000000..030afdc23f --- /dev/null +++ b/bi_view_editor/i18n/es_CO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre Público" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CR.po b/bi_view_editor/i18n/es_CR.po new file mode 100644 index 0000000000..f3b22a3c4a --- /dev/null +++ b/bi_view_editor/i18n/es_CR.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_DO.po b/bi_view_editor/i18n/es_DO.po new file mode 100644 index 0000000000..0e4a7ff396 --- /dev/null +++ b/bi_view_editor/i18n/es_DO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_EC.po b/bi_view_editor/i18n/es_EC.po new file mode 100644 index 0000000000..690ca8bf4a --- /dev/null +++ b/bi_view_editor/i18n/es_EC.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_ES.po b/bi_view_editor/i18n/es_ES.po new file mode 100644 index 0000000000..3df501493c --- /dev/null +++ b/bi_view_editor/i18n/es_ES.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre para mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Usuarios" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_MX.po b/bi_view_editor/i18n/es_MX.po new file mode 100644 index 0000000000..f4b22ddcfd --- /dev/null +++ b/bi_view_editor/i18n/es_MX.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre desplegado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_PE.po b/bi_view_editor/i18n/es_PE.po new file mode 100644 index 0000000000..5c88add945 --- /dev/null +++ b/bi_view_editor/i18n/es_PE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre a Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_PY.po b/bi_view_editor/i18n/es_PY.po new file mode 100644 index 0000000000..3da65b178e --- /dev/null +++ b/bi_view_editor/i18n/es_PY.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_VE.po b/bi_view_editor/i18n/es_VE.po new file mode 100644 index 0000000000..d2c0b70513 --- /dev/null +++ b/bi_view_editor/i18n/es_VE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Mostrar nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/et.po b/bi_view_editor/i18n/et.po new file mode 100644 index 0000000000..49ffcea74a --- /dev/null +++ b/bi_view_editor/i18n/et.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Loodud" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Loodud" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Näidatav nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Turvalisus" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/eu.po b/bi_view_editor/i18n/eu.po new file mode 100644 index 0000000000..a6fabc4bd9 --- /dev/null +++ b/bi_view_editor/i18n/eu.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Created on" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Izena erakutsi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Models" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Models" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Izena" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Errorea" diff --git a/bi_view_editor/i18n/fa.po b/bi_view_editor/i18n/fa.po new file mode 100644 index 0000000000..2936ff6a34 --- /dev/null +++ b/bi_view_editor/i18n/fa.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "شناسه" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "نام" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/fi.po b/bi_view_editor/i18n/fi.po new file mode 100644 index 0000000000..3a20fb4aa5 --- /dev/null +++ b/bi_view_editor/i18n/fi.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Toiminto" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Luotu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Luotu" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Luonnos" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Mallit" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Mallit" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Mallit" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Huomautukset" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Toiminto" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Toiminto" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Palauta luonnokseksi" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Tila" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Käyttäjät" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Virhe" diff --git a/bi_view_editor/i18n/fr.po b/bi_view_editor/i18n/fr.po new file mode 100644 index 0000000000..37ae648146 --- /dev/null +++ b/bi_view_editor/i18n/fr.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Action" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Date" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Date" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Date" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Brouillon" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nom à afficher" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 "Groupes" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modèles" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modèles" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modèles" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Commentaires" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Action" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Action" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Utilisateurs" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Erreur" diff --git a/bi_view_editor/i18n/fr_CA.po b/bi_view_editor/i18n/fr_CA.po new file mode 100644 index 0000000000..3c6cd5f3e5 --- /dev/null +++ b/bi_view_editor/i18n/fr_CA.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Créé le" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Afficher le nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Identifiant" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/fr_CH.po b/bi_view_editor/i18n/fr_CH.po new file mode 100644 index 0000000000..ba3389f375 --- /dev/null +++ b/bi_view_editor/i18n/fr_CH.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 16:14+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Créé le" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nom affiché" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Utilisateurs" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/gl.po b/bi_view_editor/i18n/gl.po new file mode 100644 index 0000000000..7d471c5eaa --- /dev/null +++ b/bi_view_editor/i18n/gl.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/gl_ES.po b/bi_view_editor/i18n/gl_ES.po new file mode 100644 index 0000000000..175c940080 --- /dev/null +++ b/bi_view_editor/i18n/gl_ES.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/he.po b/bi_view_editor/i18n/he.po new file mode 100644 index 0000000000..7371bc4f6e --- /dev/null +++ b/bi_view_editor/i18n/he.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "מזהה" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "שם" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hr.po b/bi_view_editor/i18n/hr.po new file mode 100644 index 0000000000..e81918133c --- /dev/null +++ b/bi_view_editor/i18n/hr.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Bilješke" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Korisnici" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hr_HR.po b/bi_view_editor/i18n/hr_HR.po new file mode 100644 index 0000000000..ec63f72c31 --- /dev/null +++ b/bi_view_editor/i18n/hr_HR.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Korisnici" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hu.po b/bi_view_editor/i18n/hu.po new file mode 100644 index 0000000000..ff1cc12bc2 --- /dev/null +++ b/bi_view_editor/i18n/hu.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Létrehozás dátuma" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Név megjelenítése" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Név" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Biztonság" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/id.po b/bi_view_editor/i18n/id.po new file mode 100644 index 0000000000..204d29693b --- /dev/null +++ b/bi_view_editor/i18n/id.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Dibuat pada" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nama Tampilan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nama" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Keamanan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/it.po b/bi_view_editor/i18n/it.po new file mode 100644 index 0000000000..224be176b7 --- /dev/null +++ b/bi_view_editor/i18n/it.po @@ -0,0 +1,566 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2022-07-06 19:05+0000\n" +"Last-Translator: Francesco Foresti \n" +"Language-Team: Italian (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Azione" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creato il" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creato il" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Bozza" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome da visualizzare" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 "Gruppi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Note" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Azione" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Azione" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sicurezza" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Stato" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Utenti" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/ja.po b/bi_view_editor/i18n/ja.po new file mode 100644 index 0000000000..970e96889e --- /dev/null +++ b/bi_view_editor/i18n/ja.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "作成日" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "作成日" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "表示名" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名称" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ko.po b/bi_view_editor/i18n/ko.po new file mode 100644 index 0000000000..8822146910 --- /dev/null +++ b/bi_view_editor/i18n/ko.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "작성일" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "작성일" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "이름" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lt.po b/bi_view_editor/i18n/lt.po new file mode 100644 index 0000000000..f4eeb5b927 --- /dev/null +++ b/bi_view_editor/i18n/lt.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Sukurta" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Pavadinimas" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Saugumas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lt_LT.po b/bi_view_editor/i18n/lt_LT.po new file mode 100644 index 0000000000..f5b1cace6f --- /dev/null +++ b/bi_view_editor/i18n/lt_LT.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Sukurta" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lv.po b/bi_view_editor/i18n/lv.po new file mode 100644 index 0000000000..a8e6d76538 --- /dev/null +++ b/bi_view_editor/i18n/lv.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Izveidots" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Izveidots" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nosaukums" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Drošība" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/mk.po b/bi_view_editor/i18n/mk.po new file mode 100644 index 0000000000..785d3eced3 --- /dev/null +++ b/bi_view_editor/i18n/mk.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Креирано на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Име" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/mn.po b/bi_view_editor/i18n/mn.po new file mode 100644 index 0000000000..8a29824366 --- /dev/null +++ b/bi_view_editor/i18n/mn.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Нэр" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nb.po b/bi_view_editor/i18n/nb.po new file mode 100644 index 0000000000..2a81e6efa9 --- /dev/null +++ b/bi_view_editor/i18n/nb.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Opprettet den" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Visnings navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sikkerhet" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nb_NO.po b/bi_view_editor/i18n/nb_NO.po new file mode 100644 index 0000000000..b93e0c8ff4 --- /dev/null +++ b/bi_view_editor/i18n/nb_NO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Laget den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Laget den" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vis navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nl.po b/bi_view_editor/i18n/nl.po new file mode 100644 index 0000000000..2f1e76ced7 --- /dev/null +++ b/bi_view_editor/i18n/nl.po @@ -0,0 +1,589 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2017-03-14 19:54+0100\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-reporting-engine-10-0/" +"language/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Actie" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BI Weergave bewerker" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "BI Weergave bewerker" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Aangemaakt" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Aangepaste BI Weergave" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "Aangepaste BI Weergave moet uniek zijn!" + +#. 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 "Aangepaste BI Weergaves" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Aangepast object" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Aangepaste rapporten" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Data" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Concept" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Model naam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Genereer BI Weergave" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Groepen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modellen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modellen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Model naam" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modellen" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naam" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notities" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Actie" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Query" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Actie" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Terug naar concept" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Beveiliging" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "" +"Gebruik de speciale query bouwer om queries te definiëren voor uw rapportage " +"dataset. LET OP: Om te bewerken moet de query in de 'Concept\" status zijn. " + +#. 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 "" +"Gebruikers groepen die de gegenereerde rapporten kunnen zijn; wanneer geen " +"groepen ingesteld zijn is het rapport zichtbaar voor alle gebruikers." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Gebruikers" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Weergave" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"U kunt een aangemaakte weergave niet verwijderen. Reset de weergave eerst " +"naar de concept fase." + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "" +#~ "

\n" +#~ " Click to create a Custom Query Object.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Klik om een nieuwe custom query object te maken.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " + +#~ msgid "Error" +#~ msgstr "Fout" diff --git a/bi_view_editor/i18n/nl_BE.po b/bi_view_editor/i18n/nl_BE.po new file mode 100644 index 0000000000..688bef3974 --- /dev/null +++ b/bi_view_editor/i18n/nl_BE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Gemaakt op" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naam:" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pl.po b/bi_view_editor/i18n/pl.po new file mode 100644 index 0000000000..494fe2f244 --- /dev/null +++ b/bi_view_editor/i18n/pl.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Utworzono" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Utworzono" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nazwa" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Uprawnienia" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt.po b/bi_view_editor/i18n/pt.po new file mode 100644 index 0000000000..0195350252 --- /dev/null +++ b/bi_view_editor/i18n/pt.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt_BR.po b/bi_view_editor/i18n/pt_BR.po new file mode 100644 index 0000000000..b72bdd98ac --- /dev/null +++ b/bi_view_editor/i18n/pt_BR.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Ação" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome para Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Identificação" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Ação" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Ação" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Usuários" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt_PT.po b/bi_view_editor/i18n/pt_PT.po new file mode 100644 index 0000000000..6916f6ccfb --- /dev/null +++ b/bi_view_editor/i18n/pt_PT.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 05:54+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome a Apresentar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Erro" diff --git a/bi_view_editor/i18n/ro.po b/bi_view_editor/i18n/ro.po new file mode 100644 index 0000000000..c4049009ed --- /dev/null +++ b/bi_view_editor/i18n/ro.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creat la" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creat la" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nume Afişat" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ru.po b/bi_view_editor/i18n/ru.po new file mode 100644 index 0000000000..982806d572 --- /dev/null +++ b/bi_view_editor/i18n/ru.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Создан" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Создан" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Название" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sk.po b/bi_view_editor/i18n/sk.po new file mode 100644 index 0000000000..5e34940100 --- /dev/null +++ b/bi_view_editor/i18n/sk.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Vytvorené" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Zobraziť meno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Meno" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezpečnosť" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sl.po b/bi_view_editor/i18n/sl.po new file mode 100644 index 0000000000..5aeb49734c --- /dev/null +++ b/bi_view_editor/i18n/sl.po @@ -0,0 +1,592 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-04 02:44+0000\n" +"PO-Revision-Date: 2016-05-03 15:03+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Ukrep" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BI urejevalnik prikazov" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "BI urejevalnik prikazov" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Nastanek" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Prilagojen BI prikaz" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "Nazivi prilagojenih BI prikazov morajo biti unikatni!" + +#. 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 "Prilagojeni BI prikazi" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Prilagojen objekt" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Prilagojena poročila" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Podatki" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Osnutek" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Naziv modela" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Ustvari BI prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Skupine" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Opombe" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Ukrep" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Poizvedba" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Ukrep" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Ponastavi v osnutek" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Varnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Stanje" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "" +"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 +#: 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 "" +"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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Uporabniki" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"Ustvarjenega prikaza ne morete brisati! Najprej morate prikaz ponastaviti v " +"osnutek." + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "" +#~ "

\n" +#~ " Click to create a Custom Query Object.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Ustvari prilagojen objekt poizvedbe.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " + +#~ msgid "Error" +#~ msgstr "Napaka" diff --git a/bi_view_editor/i18n/sr.po b/bi_view_editor/i18n/sr.po new file mode 100644 index 0000000000..b2a94a9010 --- /dev/null +++ b/bi_view_editor/i18n/sr.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreiran" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sr@latin.po b/bi_view_editor/i18n/sr@latin.po new file mode 100644 index 0000000000..5937e8a0ca --- /dev/null +++ b/bi_view_editor/i18n/sr@latin.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreiran" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Ime za prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime:" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sv.po b/bi_view_editor/i18n/sv.po new file mode 100644 index 0000000000..dab73cc898 --- /dev/null +++ b/bi_view_editor/i18n/sv.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Skapad den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Skapad den" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Visa namn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Namn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Säkerhet" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/th.po b/bi_view_editor/i18n/th.po new file mode 100644 index 0000000000..102e5e3e52 --- /dev/null +++ b/bi_view_editor/i18n/th.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "รหัส" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "ชื่อ" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/tr.po b/bi_view_editor/i18n/tr.po new file mode 100644 index 0000000000..5afcfbc459 --- /dev/null +++ b/bi_view_editor/i18n/tr.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Eylem" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oluşturuldu" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Görünen İsim" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeller" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeller" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Adı" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Eylem" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Taslakta Sıfırla" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Durum" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "Kullanıcılar" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/tr_TR.po b/bi_view_editor/i18n/tr_TR.po new file mode 100644 index 0000000000..a54485b581 --- /dev/null +++ b/bi_view_editor/i18n/tr_TR.po @@ -0,0 +1,571 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 06:53+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: Ozge Altinisik \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Eylem" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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 "Veri" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Tip adı" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Kimlik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Tipler" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Tipler" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Tip adı" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Tipler" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ad" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Soru" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Eylem" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Güvenlik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Hal" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 "" +"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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Kullanıcılar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Hata" diff --git a/bi_view_editor/i18n/uk.po b/bi_view_editor/i18n/uk.po new file mode 100644 index 0000000000..a81d703a5b --- /dev/null +++ b/bi_view_editor/i18n/uk.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Дата створення" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Name" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/vi.po b/bi_view_editor/i18n/vi.po new file mode 100644 index 0000000000..fead16a36f --- /dev/null +++ b/bi_view_editor/i18n/vi.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Được tạo vào" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Tên hiển thị" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Tên" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bảo mật" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/vi_VN.po b/bi_view_editor/i18n/vi_VN.po new file mode 100644 index 0000000000..3cf6c3430c --- /dev/null +++ b/bi_view_editor/i18n/vi_VN.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Tạo vào" + +#. 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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/zh_CN.po b/bi_view_editor/i18n/zh_CN.po new file mode 100644 index 0000000000..f4d13933d0 --- /dev/null +++ b/bi_view_editor/i18n/zh_CN.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "创建时间" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名称" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/zh_TW.po b/bi_view_editor/i18n/zh_TW.po new file mode 100644 index 0000000000..593b63c565 --- /dev/null +++ b/bi_view_editor/i18n/zh_TW.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +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:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, 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 +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "建立於" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "建立於" + +#. module: bi_view_editor +#: model_terms: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:106 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_terms: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_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms: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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "編號" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__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 +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名稱" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, 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_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms: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_line__sequence +msgid "Sequence" +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 +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +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 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/models/__init__.py b/bi_view_editor/models/__init__.py new file mode 100644 index 0000000000..b8e17515d5 --- /dev/null +++ b/bi_view_editor/models/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models +from . import bve_view +from . import bve_view_line +from . import ir_model diff --git a/bi_view_editor/models/bve_view.py b/bi_view_editor/models/bve_view.py new file mode 100644 index 0000000000..6392a97395 --- /dev/null +++ b/bi_view_editor/models/bve_view.py @@ -0,0 +1,646 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import base64 +import json + +import pydot +from psycopg2.extensions import AsIs + +from odoo import _, api, fields, models, tools +from odoo.exceptions import UserError, ValidationError + + +class BveView(models.Model): + _name = "bve.view" + _description = "BI View Editor" + + @api.depends("group_ids", "group_ids.users") + def _compute_users(self): + for bve_view in self.sudo(): + if bve_view.group_ids: + bve_view.user_ids = bve_view.group_ids.mapped("users") + else: + bve_view.user_ids = self.env["res.users"].sudo().search([]) + + @api.depends("name") + def _compute_model_name(self): + for bve_view in self: + name = [x for x in bve_view.name.lower() if x.isalnum()] + model_name = "".join(name).replace("_", ".").replace(" ", ".") + bve_view.model_name = "x_bve." + model_name + + def _compute_serialized_data(self): + for bve_view in self: + serialized_data = [] + for line in bve_view.line_ids.sorted(key=lambda r: r.sequence): + serialized_data.append( + { + "sequence": line.sequence, + "model_id": line.model_id.id, + "id": line.field_id.id, + "name": line.name, + "model_name": line.model_id.name, + "model": line.model_id.model, + "type": line.ttype, + "table_alias": line.table_alias, + "description": line.description, + "row": line.row, + "column": line.column, + "measure": line.measure, + "list": line.in_list, + "join_node": line.join_node, + "relation": line.relation, + } + ) + bve_view.data = json.dumps(serialized_data) + + def _inverse_serialized_data(self): + for bve_view in self: + line_ids = self._sync_lines_and_data(bve_view.data) + bve_view.write({"line_ids": line_ids}) + + name = fields.Char(required=True, copy=False, default="") + model_name = fields.Char(compute="_compute_model_name", store=True) + note = fields.Text(string="Notes") + state = fields.Selection( + [("draft", "Draft"), ("created", "Created")], default="draft", copy=False + ) + data = fields.Char( + compute="_compute_serialized_data", + inverse="_inverse_serialized_data", + help="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.", + ) + line_ids = fields.One2many("bve.view.line", "bve_view_id", string="Lines") + field_ids = fields.One2many( + "bve.view.line", + "bve_view_id", + domain=["|", ("join_node", "=", -1), ("join_node", "=", False)], + string="Fields", + ) + relation_ids = fields.One2many( + "bve.view.line", + "bve_view_id", + domain=[("join_node", "!=", -1), ("join_node", "!=", False)], + string="Relations", + ) + action_id = fields.Many2one("ir.actions.act_window", string="Action") + view_id = fields.Many2one("ir.ui.view", string="View") + group_ids = fields.Many2many( + "res.groups", + string="Groups", + help="User groups allowed to see the generated report; " + "if NO groups are specified the report will be public " + "for everyone.", + ) + user_ids = fields.Many2many( + "res.users", string="Users", compute="_compute_users", store=True + ) + query = fields.Text(compute="_compute_sql_query") + over_condition = fields.Text( + states={"draft": [("readonly", False)]}, + readonly=True, + help="Condition to be inserted in the OVER part " + "of the ID's row_number function.\n" + "For instance, 'ORDER BY t1.id' would create " + "IDs ordered in the same way as t1's IDs; otherwise " + "IDs are assigned with no specific order.", + ) + er_diagram_image = fields.Binary(compute="_compute_er_diagram_image") + + _sql_constraints = [ + ("name_uniq", "unique(name)", _("Custom BI View names must be unique!")), + ] + + @api.depends("line_ids") + def _compute_er_diagram_image(self): + for bve_view in self: + graph = pydot.Dot(graph_type="graph") + table_model_map = {} + for line in bve_view.field_ids: + if line.table_alias not in table_model_map: + table_alias_node = pydot.Node( + line.model_id.name + " " + line.table_alias, + style="filled", + shape="box", + fillcolor="#DDDDDD", + ) + table_model_map[line.table_alias] = table_alias_node + graph.add_node(table_model_map[line.table_alias]) + field_node = pydot.Node( + line.table_alias + "." + line.field_id.field_description, + label=line.description, + style="filled", + fillcolor="green", + ) + graph.add_node(field_node) + graph.add_edge( + pydot.Edge(table_model_map[line.table_alias], field_node) + ) + for line in bve_view.relation_ids: + field_description = line.field_id.field_description + table_alias = line.table_alias + diamond_node = pydot.Node( + line.ttype + " " + table_alias + "." + field_description, + label=table_alias + "." + field_description, + style="filled", + shape="diamond", + fillcolor="#D2D2FF", + ) + graph.add_node(diamond_node) + graph.add_edge( + pydot.Edge( + table_model_map[table_alias], + diamond_node, + labelfontcolor="#D2D2FF", + color="blue", + ) + ) + graph.add_edge( + pydot.Edge( + diamond_node, + table_model_map[line.join_node], + labelfontcolor="black", + color="blue", + ) + ) + try: + png_base64_image = base64.b64encode(graph.create_png()) + bve_view.er_diagram_image = png_base64_image + except Exception: + bve_view.er_diagram_image = False + + def _create_view_arch(self): + self.ensure_one() + + def _get_field_def(line): + field_type = line.view_field_type + return ''.format(line.name, field_type) + + bve_field_lines = self.field_ids.filtered("view_field_type") + return list(map(_get_field_def, bve_field_lines)) + + def _create_tree_view_arch(self): + self.ensure_one() + + def _get_field_attrs(line): + attr = line.list_attr + res = attr and '{}="{}"'.format(attr, line.description) or "" + return ''.format(line.name, res) + + bve_field_lines = self.field_ids.filtered(lambda l: l.in_list) + return list(map(_get_field_attrs, bve_field_lines.sorted("sequence"))) + + def _create_bve_view(self): + self.ensure_one() + View = self.env["ir.ui.view"].sudo() + + # delete old views + View.search([("model", "=", self.model_name)]).unlink() + + # create views + View.create( + [ + { + "name": "Pivot Analysis", + "type": "pivot", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + { + "name": "Graph Analysis", + "type": "graph", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + { + "name": "Search BI View", + "type": "search", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + ] + ) + + # create Tree view + tree_view = View.create( + { + "name": "Tree Analysis", + "type": "tree", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_tree_view_arch()) + ), + } + ) + + # set the Tree view as the default one + action = ( + self.env["ir.actions.act_window"] + .sudo() + .create( + { + "name": self.name, + "res_model": self.model_name, + "type": "ir.actions.act_window", + "view_mode": "tree,graph,pivot", + "view_id": tree_view.id, + "context": "{'service_name': '%s'}" % self.name, + } + ) + ) + + self.write( + {"action_id": action.id, "view_id": tree_view.id, "state": "created"} + ) + + def _build_access_rules(self, model): + self.ensure_one() + + if not self.group_ids: + self.env["ir.model.access"].sudo().create( + { + "name": "read access to " + self.model_name, + "model_id": model.id, + "perm_read": True, + } + ) + else: + # read access only to model + access_vals = [ + { + "name": "read access to " + self.model_name, + "model_id": model.id, + "group_id": group.id, + "perm_read": True, + } + for group in self.group_ids + ] + self.env["ir.model.access"].sudo().create(access_vals) + + def _create_sql_view(self): + self.ensure_one() + + view_name = self.model_name.replace(".", "_") + query = self.query and self.query.replace("\n", " ") + + # robustness in case something went wrong + self._cr.execute("DROP TABLE IF EXISTS %s", (AsIs(view_name),)) + + # create postgres view + try: + with self.env.cr.savepoint(): + self.env.cr.execute( + "CREATE or REPLACE VIEW %s as (%s)", + ( + AsIs(view_name), + AsIs(query), + ), + ) + except Exception as e: + raise UserError( + _("Error creating the view '{query}':\n{error}").format( + query=query, error=e + ) + ) from e + + @api.depends("line_ids", "state", "over_condition") + def _compute_sql_query(self): + for bve_view in self: + tables_map = {} + select_str = "\n CAST(row_number() OVER ({}) as integer) AS id".format( + bve_view.over_condition or "" + ) + for line in bve_view.field_ids: + table = line.table_alias + select = line.field_id.name + as_name = line.name + select_str += ",\n {}.{} AS {}".format(table, select, as_name) + + if line.table_alias not in tables_map: + table = self.env[line.field_id.model_id.model]._table + tables_map[line.table_alias] = table + seen = set() + from_str = "" + if not bve_view.relation_ids and bve_view.field_ids: + first_line = bve_view.field_ids[0] + table = tables_map[first_line.table_alias] + from_str = "{} AS {}".format(table, first_line.table_alias) + for line in bve_view.relation_ids: + table = tables_map[line.table_alias] + table_format = "{} AS {}".format(table, line.table_alias) + if not from_str: + from_str += table_format + seen.add(line.table_alias) + if line.table_alias not in seen: + seen.add(line.table_alias) + from_str += "\n" + from_str += " LEFT" if line.left_join else "" + from_str += " JOIN {} ON {}.id = {}.{}".format( + table_format, + line.join_node, + line.table_alias, + line.field_id.name, + ) + if line.join_node not in seen: + from_str += "\n" + seen.add(line.join_node) + from_str += " LEFT" if line.left_join else "" + from_str += " JOIN {} AS {} ON {}.{} = {}.id".format( + tables_map[line.join_node], + line.join_node, + line.table_alias, + line.field_id.name, + line.join_node, + ) + bve_view.query = """SELECT %s\n\nFROM %s + """ % ( + AsIs(select_str), + AsIs(from_str), + ) + + def action_translations(self): + self.ensure_one() + if self.state != "created": + return + self = self.sudo() + model = self.env["ir.model"].sudo().search([("model", "=", self.model_name)]) + IrTranslation = self.env["ir.translation"] + IrTranslation.translate_fields("ir.model", model.id) + for field in model.field_id: + IrTranslation.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"), + ], + } + + def action_create(self): + self.ensure_one() + + # consistency checks + self._check_invalid_lines() + self._check_groups_consistency() + + # force removal of dirty views in case something went wrong + self.sudo().action_reset() + + # create sql view + self._create_sql_view() + + # create model and fields + bve_fields = self.line_ids.filtered(lambda l: not l.join_node) + model = ( + self.env["ir.model"] + .sudo() + .with_context(bve=True) + .create( + { + "name": self.name, + "model": self.model_name, + "state": "manual", + "field_id": [(0, 0, f) for f in bve_fields._prepare_field_vals()], + } + ) + ) + + # give access rights + self._build_access_rules(model) + + # create tree, graph and pivot views + self._create_bve_view() + + def _check_groups_consistency(self): + self.ensure_one() + + if not self.group_ids: + return + + for line_model in self.line_ids.mapped("model_id"): + res_count = ( + self.env["ir.model.access"] + .sudo() + .search( + [ + ("model_id", "=", line_model.id), + ("perm_read", "=", True), + "|", + ("group_id", "=", False), + ("group_id", "in", self.group_ids.ids), + ], + limit=1, + ) + ) + if not res_count: + access_records = ( + self.env["ir.model.access"] + .sudo() + .search( + [("model_id", "=", line_model.id), ("perm_read", "=", True)] + ) + ) + group_list = "" + for group in access_records.mapped("group_id"): + group_list += " * {}\n".format(group.full_name) + msg_title = _( + 'The model "%s" cannot be accessed by users with the selected groups only.' + ) % (line_model.name,) + msg_details = _("At least one of the following groups must be added:") + raise UserError( + _("%(msg_title)s\n\n%(msg_details)s\n%(group_list)s") + % { + "msg_title": msg_title, + "msg_details": msg_details, + "group_list": group_list, + } + ) + + def _check_invalid_lines(self): + self.ensure_one() + if not self.line_ids: + raise ValidationError(_("No data to process.")) + + invalid_lines = self.line_ids.filtered(lambda l: not l.model_id) + if invalid_lines: + missing_models = ", ".join(set(invalid_lines.mapped("model_name"))) + raise ValidationError( + _( + "Following models are missing: %s.\nProbably some modules were uninstalled." + ) + % (missing_models,) + ) + invalid_lines = self.line_ids.filtered(lambda l: not l.field_id) + if invalid_lines: + missing_fields = ", ".join(set(invalid_lines.mapped("field_name"))) + raise ValidationError( + _("Following fields are missing: %(missing_fields)s.") + % ({"missing_fields": missing_fields}) + ) + + def open_view(self): + self.ensure_one() + self._check_invalid_lines() + [action] = self.action_id.read() + action["display_name"] = _("BI View") + return action + + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}, name=_("%s (copy)") % self.name) + return super().copy(default=default) + + def action_reset(self): + self.ensure_one() + + has_menus = False + if self.action_id: + action = "ir.actions.act_window,%d" % (self.action_id.id,) + menus = self.env["ir.ui.menu"].search([("action", "=", action)]) + has_menus = True if menus else False + menus.unlink() + + if self.action_id.view_id: + self.sudo().action_id.view_id.unlink() + self.sudo().action_id.unlink() + + self.env["ir.ui.view"].sudo().search([("model", "=", self.model_name)]).unlink() + models_to_delete = ( + self.env["ir.model"].sudo().search([("model", "=", self.model_name)]) + ) + if models_to_delete: + models_to_delete.with_context(_force_unlink=True).unlink() + + table_name = self.model_name.replace(".", "_") + tools.drop_view_if_exists(self.env.cr, table_name) + + self.state = "draft" + + if has_menus: + return {"type": "ir.actions.client", "tag": "reload"} + + def unlink(self): + if self.filtered(lambda v: v.state == "created"): + raise UserError( + _("You cannot delete a created view! " "Reset the view to draft first.") + ) + return super().unlink() + + @api.model + def _sync_lines_and_data(self, data): + line_ids = [(5, 0, 0)] + fields_info = [] + if data: + fields_info = json.loads(data) + + table_model_map = {} + for item in fields_info: + if item.get("join_node", -1) == -1: + table_model_map[item["table_alias"]] = item["model_id"] + + for sequence, field_info in enumerate(fields_info, start=1): + join_model_id = False + join_node = field_info.get("join_node", -1) + if join_node != -1 and table_model_map.get(join_node): + join_model_id = int(table_model_map[join_node]) + + line_ids += [ + ( + 0, + False, + { + "sequence": sequence, + "model_id": field_info["model_id"], + "table_alias": field_info["table_alias"], + "description": field_info["description"], + "field_id": field_info["id"], + "ttype": field_info["type"], + "row": field_info["row"], + "column": field_info["column"], + "measure": field_info["measure"], + "in_list": field_info["list"], + "relation": field_info.get("relation"), + "join_node": field_info.get("join_node"), + "join_model_id": join_model_id, + }, + ) + ] + return line_ids + + @api.constrains("line_ids") + def _constraint_line_ids(self): + models_with_tables = self.env.registry.models.keys() + for view in self: + nodes = view.line_ids.filtered(lambda n: n.join_node) + nodes_models = nodes.mapped("table_alias") + nodes_models += nodes.mapped("join_node") + not_nodes = view.line_ids.filtered(lambda n: not n.join_node) + not_nodes_models = not_nodes.mapped("table_alias") + err_msg = _("Inconsistent lines.") + if set(nodes_models) - set(not_nodes_models): + raise ValidationError(err_msg) + if len(set(not_nodes_models) - set(nodes_models)) > 1: + raise ValidationError(err_msg) + models = view.line_ids.mapped("model_id") + if models.filtered(lambda m: m.model not in models_with_tables): + raise ValidationError(_("Abstract models not supported.")) + + @api.model + def get_clean_list(self, data_dict): + serialized_data = data_dict + if type(data_dict) == str: + serialized_data = json.loads(data_dict) + table_alias_list = set() + for item in serialized_data: + if item.get("join_node", -1) in [-1, False]: + table_alias_list.add(item["table_alias"]) + + for item in serialized_data: + if item.get("join_node", -1) not in [-1, False]: + if item["table_alias"] not in table_alias_list: + serialized_data.remove(item) + elif item["join_node"] not in table_alias_list: + serialized_data.remove(item) + + return json.dumps(serialized_data) diff --git a/bi_view_editor/models/bve_view_line.py b/bi_view_editor/models/bve_view_line.py new file mode 100644 index 0000000000..4e452ac8a0 --- /dev/null +++ b/bi_view_editor/models/bve_view_line.py @@ -0,0 +1,123 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class BveViewLine(models.Model): + _name = "bve.view.line" + _description = "BI View Editor Lines" + + name = fields.Char(compute="_compute_name") + sequence = fields.Integer(default=1) + bve_view_id = fields.Many2one("bve.view", ondelete="cascade") + model_id = fields.Many2one("ir.model") + model_name = fields.Char(related="model_id.model", store=True, string="Model Name") + table_alias = fields.Char(required=True) + join_model_id = fields.Many2one("ir.model") + field_id = fields.Many2one("ir.model.fields") + field_name = fields.Char(compute="_compute_model_field_name", store=True) + ttype = fields.Char(string="Type") + description = fields.Char(translate=True) + relation = fields.Char() + join_node = fields.Char() + left_join = fields.Boolean() + + row = fields.Boolean() + column = fields.Boolean() + measure = fields.Boolean() + in_list = fields.Boolean() + list_attr = fields.Selection( + [("sum", "Sum"), ("avg", "Average")], string="List Attribute", default="sum" + ) + view_field_type = fields.Char(compute="_compute_view_field_type") + + @api.depends("row", "column", "measure") + def _compute_view_field_type(self): + for line in self: + row = line.row and "row" + column = line.column and "col" + measure = line.measure and "measure" + line.view_field_type = row or column or measure + + @api.constrains("row", "column", "measure") + def _constrains_options_check(self): + measure_types = ["float", "integer", "monetary"] + for line in self.filtered(lambda l: l.row or l.column): + if line.join_model_id or line.ttype in measure_types: + err_msg = _("This field cannot be a row or a column.") + raise ValidationError(err_msg) + for line in self.filtered(lambda l: l.measure): + if line.join_model_id or line.ttype not in measure_types: + err_msg = _("This field cannot be a measure.") + raise ValidationError(err_msg) + + @api.constrains("table_alias", "field_id") + def _constrains_unique_fields_check(self): + seen = set() + for line in self.mapped("bve_view_id.field_ids"): + if ( + line.table_alias, + line.field_id.id, + ) not in seen: + seen.add( + ( + line.table_alias, + line.field_id.id, + ) + ) + else: + field_model = line.field_id.model + field_name = line.field_id.name + raise ValidationError( + _( + "Field %(field_model)s/%(field_name)s is duplicated.\n" + "Please remove the duplications." + ) + % {"field_model": field_model, "field_name": field_name} + ) + + @api.depends("field_id", "sequence") + def _compute_name(self): + for line in self: + line.name = False + if line.field_id: + line.name = "x_bve_{}_{}".format(line.table_alias, line.field_id.name) + + @api.depends("field_id") + def _compute_model_field_name(self): + for line in self: + line.field_name = False + if line.field_id: + line.field_name = "{} ({})".format(line.description, line.model_name) + + def _prepare_field_vals(self): + vals_list = [] + for line in self: + field = line.field_id + vals = { + "name": line.name, + "complete_name": field.complete_name, + "model": line.bve_view_id.model_name, + "relation": field.relation, + "field_description": line.description, + "ttype": field.ttype, + "selection": field.selection, + "size": field.size, + "state": "manual", + "readonly": True, + "groups": [(6, 0, field.groups.ids)], + } + if vals["ttype"] == "monetary": + vals.update({"ttype": "float"}) + if field.ttype == "selection" and not field.selection: + model_obj = self.env[field.model_id.model] + selection = model_obj._fields[field.name].selection + if callable(selection): + selection_domain = selection(model_obj) + else: + selection_domain = selection + vals.update({"selection": str(selection_domain)}) + vals_list.append(vals) + return vals_list diff --git a/bi_view_editor/models/ir_model.py b/bi_view_editor/models/ir_model.py new file mode 100644 index 0000000000..16b501c64b --- /dev/null +++ b/bi_view_editor/models/ir_model.py @@ -0,0 +1,219 @@ +# Copyright 2015-2019 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from collections import defaultdict + +from odoo import api, models + +NO_BI_MODELS = ["fetchmail.server"] + +NO_BI_TTYPES = ["many2many", "one2many", "html", "binary", "reference"] + + +def dict_for_field(field): + return { + "id": field.id, + "name": field.name, + "description": field.field_description, + "type": field.ttype, + "relation": field.relation, + "custom": False, + "model_id": field.model_id.id, + "model": field.model_id.model, + "model_name": field.model_id.name, + } + + +def dict_for_model(model): + return {"id": model.id, "name": model.name, "model": model.model} + + +class IrModel(models.Model): + _inherit = "ir.model" + + @api.model + def _filter_bi_models(self, model): + def _check_name(model_model): + if model_model in NO_BI_MODELS: + return 1 + return 0 + + def _check_startswith(model_model): + if ( + model_model.startswith("workflow") + or model_model.startswith("ir.") + or model_model.startswith("base_") + ): + return 1 + return 0 + + def _check_contains(model_model): + if ( + "mail" in model_model + or "report" in model_model + or "edi." in model_model + ): + return 1 + return 0 + + def _check_unknown(model_name): + if model_name == "Unknown" or "." in model_name: + return 1 + return 0 + + model_model = model["model"] + model_name = model["name"] + count_check = 0 + count_check += _check_name(model_model) + count_check += _check_startswith(model_model) + count_check += _check_contains(model_model) + count_check += _check_unknown(model_name) + if not count_check: + return ( + self.env["ir.model.access"].sudo().check(model["model"], "read", False) + ) + return False + + def get_model_list(self, model_table_map): + if not model_table_map: + return [] + domain = [ + ("model_id", "in", list(model_table_map.keys())), + ("store", "=", True), + ("ttype", "=", "many2one"), + ] + fields = self.env["ir.model.fields"].sudo().search(domain) + model_list = [] + for field in fields: + for table_alias in model_table_map[field.model_id.id]: + model_list.append( + dict( + dict_for_field(field), + table_alias=table_alias, + join_node=-1, + ) + ) + return model_list + + def get_relation_list(self, model_table_map): + if not model_table_map: + return [] + model_names = {} + for model in self.sudo().browse(model_table_map.keys()): + model_names.update({model.model: model.id}) + + domain = [ + ("relation", "in", list(model_names.keys())), + ("store", "=", True), + ("ttype", "=", "many2one"), + ] + fields = self.env["ir.model.fields"].sudo().search(domain) + relation_list = [] + for field in fields: + model_id = model_names[field.relation] + for join_node in model_table_map[model_id]: + relation_list.append( + dict(dict_for_field(field), join_node=join_node, table_alias=-1) + ) + return relation_list + + @api.model + def _get_related_models_domain(self, model_table_map): + domain = [("transient", "=", False)] + if model_table_map: + model_list = self.get_model_list(model_table_map) + relation_list = self.get_relation_list(model_table_map) + model_ids = [f["model_id"] for f in relation_list + model_list] + model_ids += list(model_table_map.keys()) + relations = [f["relation"] for f in model_list] + domain += ["|", ("id", "in", model_ids), ("model", "in", relations)] + return domain + + @api.model + def get_related_models(self, model_table_map): + """Return list of model dicts for all models that can be + joined with the already selected models. + """ + domain = self._get_related_models_domain(model_table_map) + return self.sudo().search(domain, order="name asc") + + @api.model + def get_models(self, table_model_map=None): + """Return list of model dicts for all available models.""" + self = self.with_context(lang=self.env.user.lang) + model_table_map = defaultdict(list) + for k, v in (table_model_map or {}).items(): + model_table_map[v].append(k) + + models = self.get_related_models(model_table_map) + + # filter out abstract models (they do not have DB tables) + non_abstract_models = self.env.registry.models.keys() + models = models.filtered(lambda m: m.model in non_abstract_models) + + return list(map(dict_for_model, models)) + + @api.model + def get_join_nodes(self, field_data, new_field): + """Return list of field dicts of join nodes + + Return all possible join nodes to add new_field to the query + containing model_ids. + """ + + def remove_duplicate_nodes(join_nodes): + seen = set() + nodes_list = [] + for node in join_nodes: + node_tuple = tuple(node.items()) + if node_tuple not in seen: + seen.add(node_tuple) + nodes_list.append(node) + return nodes_list + + self = self.with_context(lang=self.env.user.lang) + + keys = [] + model_table_map = defaultdict(list) + for field in field_data: + model_table_map[field["model_id"]].append(field["table_alias"]) + if field.get("join_node", -1) != -1: + keys.append((field["table_alias"], field["id"])) + + # nodes in current model + existing_aliases = model_table_map[new_field["model_id"]] + join_nodes = [{"table_alias": alias} for alias in existing_aliases] + + # nodes in past selected models + for field in self.get_model_list(model_table_map): + if new_field["model"] == field["relation"]: + if (field["table_alias"], field["id"]) not in keys: + join_nodes.append(field) + + # nodes in new model + for field in self.get_relation_list(model_table_map): + if new_field["model_id"] == field["model_id"]: + if (field["table_alias"], field["id"]) not in keys: + join_nodes.append(field) + + return remove_duplicate_nodes(join_nodes) + + @api.model + def get_fields(self, model_id): + self = self.with_context(lang=self.env.user.lang) + + fields = ( + self.env["ir.model.fields"] + .sudo() + .search( + [ + ("model_id", "=", model_id), + ("store", "=", True), + ("name", "not in", models.MAGIC_COLUMNS), + ("ttype", "not in", NO_BI_TTYPES), + ], + order="field_description desc", + ) + ) + fields_dict = list(map(dict_for_field, fields)) + return fields_dict diff --git a/bi_view_editor/models/models.py b/bi_view_editor/models/models.py new file mode 100644 index 0000000000..9f542c166e --- /dev/null +++ b/bi_view_editor/models/models.py @@ -0,0 +1,48 @@ +# Copyright 2017-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging + +from odoo import _, api, models +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) + + +@api.model +def _bi_view(_name): + return _name.startswith("x_bve.") + + +_auto_init_orig = models.BaseModel._auto_init + + +def _auto_init(self): + + # 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. + + # This monkey patch seems not working if defined inside the post_load() + + if _bi_view(self._name): + return + return _auto_init_orig(self) + + +models.BaseModel._auto_init = _auto_init + + +class Base(models.AbstractModel): + _inherit = "base" + + @api.model + def _read_group_process_groupby(self, gb, query): + if not _bi_view(self._name): + return super()._read_group_process_groupby(gb, query) + + split = gb.split(":") + if split[0] not in self._fields: + raise UserError(_("No data to be displayed.")) + return super()._read_group_process_groupby(gb, query) diff --git a/bi_view_editor/readme/CONTRIBUTORS.rst b/bi_view_editor/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..92632b85a4 --- /dev/null +++ b/bi_view_editor/readme/CONTRIBUTORS.rst @@ -0,0 +1,9 @@ +* Simon Janssens +* Diego Luis Neto +* Dennis Sluijk +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* Jordi Ballester Alomar +* Italo LOPES diff --git a/bi_view_editor/readme/CREDITS.rst b/bi_view_editor/readme/CREDITS.rst new file mode 100644 index 0000000000..5dc62467dd --- /dev/null +++ b/bi_view_editor/readme/CREDITS.rst @@ -0,0 +1,6 @@ +Funders +------- + +The development of this module for Odoo 11.0 has been financially supported by: + +* IDEAL Connaissances SAS https://www.idealconnaissances.com diff --git a/bi_view_editor/readme/DESCRIPTION.rst b/bi_view_editor/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..f3f712b0f6 --- /dev/null +++ b/bi_view_editor/readme/DESCRIPTION.rst @@ -0,0 +1,14 @@ +BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code. + +Purpose: + +* The BI View Editor is used to create reports not already contained in the + standard Odoo, combining data from existing sources. + +* It has been designed to be used by users with little or no knowledge of + the technical architecture of Odoo. Users visually link business objects + and select the fields to visualize. + +* The BI View Editor offers users different types of representations, + including tree, graph, pivot views. diff --git a/bi_view_editor/readme/INSTALL.rst b/bi_view_editor/readme/INSTALL.rst new file mode 100644 index 0000000000..be748ad7bc --- /dev/null +++ b/bi_view_editor/readme/INSTALL.rst @@ -0,0 +1,18 @@ +In the Odoo configuration file add ``bi_view_editor`` in the list +``server_wide_modules``: + +.. code-block:: ini + + [options] + (...) + server_wide_modules = web,bi_view_editor + (...) + +Alternatively specify ``--load=bi_view_editor`` when starting Odoo by command line. + +Optionally it is possible to enable the view of the ER Diagram. For this you +need to install `Graphviz`, an open source graph visualization software: + +.. code-block:: bash + + ``sudo apt-get install graphviz`` diff --git a/bi_view_editor/readme/ROADMAP.rst b/bi_view_editor/readme/ROADMAP.rst new file mode 100644 index 0000000000..32e4e2d006 --- /dev/null +++ b/bi_view_editor/readme/ROADMAP.rst @@ -0,0 +1,7 @@ +* Non-stored fields and many2many fields are not supported. +* Provide a tutorial (eg. a working example of usage). +* Find better ways to extend the *_auto_init()* without override. +* Possibly avoid the monkey patches. +* Data the user has no access to (e.g. in a multi company situation) can be + viewed by making a view. Would be nice if models available to select when + creating a view are limited to the ones that have intersecting groups. diff --git a/bi_view_editor/readme/USAGE.rst b/bi_view_editor/readme/USAGE.rst new file mode 100644 index 0000000000..064ab5610c --- /dev/null +++ b/bi_view_editor/readme/USAGE.rst @@ -0,0 +1,29 @@ +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- Browse trough the business objects in the "Query Builder" tab +- Pick the interesting fields (Drag & Drop) +- For each selected field, right-click on the Options column and select whether + it's a row, column or measure; if you want to remove the field from the list + view, unflag the checkbox ´List´ in the Options column +- Save and click "Generate BI View" +- Click "Open BI View" to view the result + +To access the created BI View with a dedicated menu: + +- If module Dashboard (board) is installed, the standard "Add to My Dashboard" + functionality would be available +- Click "Create a menu" to create a new menu item directly linked to your new + BI view (this feature is available in developer mode); when the BI view is + reset back to draft this menu will be removed, and you will need to re-create + the menu entry. + +A more advanced UI is also available under the "Details" tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN. + +It also possible to improve the IDs generation for new views by adding an +`Over Condition` in the "SQL" tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views. diff --git a/bi_view_editor/security/ir.model.access.csv b/bi_view_editor/security/ir.model.access.csv new file mode 100644 index 0000000000..dd6cc2dafd --- /dev/null +++ b/bi_view_editor/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_bve_view_everyone,bve.view,bi_view_editor.model_bve_view,,1,1,1,1 +access_bve_view_line,access_bve_view_line,model_bve_view_line,,1,1,1,1 diff --git a/bi_view_editor/security/rules.xml b/bi_view_editor/security/rules.xml new file mode 100644 index 0000000000..f3cbc39aa2 --- /dev/null +++ b/bi_view_editor/security/rules.xml @@ -0,0 +1,11 @@ + + + + bve_view read access + + + + ['|',('user_ids','=',False),('user_ids','in',user.id)] + + + diff --git a/bi_view_editor/static/description/icon.png b/bi_view_editor/static/description/icon.png new file mode 100644 index 0000000000..bd6f94bca9 Binary files /dev/null and b/bi_view_editor/static/description/icon.png differ diff --git a/bi_view_editor/static/description/index.html b/bi_view_editor/static/description/index.html new file mode 100644 index 0000000000..a3e7a8095a --- /dev/null +++ b/bi_view_editor/static/description/index.html @@ -0,0 +1,514 @@ + + + + + + +BI View Editor + + + +
+

BI View Editor

+ + +

Beta License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runbot

+

BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code.

+

Purpose:

+
    +
  • The BI View Editor is used to create reports not already contained in the +standard Odoo, combining data from existing sources.
  • +
  • It has been designed to be used by users with little or no knowledge of +the technical architecture of Odoo. Users visually link business objects +and select the fields to visualize.
  • +
  • The BI View Editor offers users different types of representations, +including tree, graph, pivot views.
  • +
+

Table of contents

+ +
+

Installation

+

In the Odoo configuration file add bi_view_editor in the list +server_wide_modules:

+
+[options]
+(...)
+server_wide_modules = web,bi_view_editor
+(...)
+
+

Alternatively specify --load=bi_view_editor when starting Odoo by command line.

+

Optionally it is possible to enable the view of the ER Diagram. For this you +need to install Graphviz, an open source graph visualization software:

+
+``sudo apt-get install graphviz``
+
+
+
+

Usage

+

To graphically design your analysis data-set:

+
    +
  • From the Dashboards menu, select “Custom BI Views”
  • +
  • Browse trough the business objects in the “Query Builder” tab
  • +
  • Pick the interesting fields (Drag & Drop)
  • +
  • For each selected field, right-click on the Options column and select whether +it’s a row, column or measure; if you want to remove the field from the list +view, unflag the checkbox ´List´ in the Options column
  • +
  • Save and click “Generate BI View”
  • +
  • Click “Open BI View” to view the result
  • +
+

To access the created BI View with a dedicated menu:

+
    +
  • If module Dashboard (board) is installed, the standard “Add to My Dashboard” +functionality would be available
  • +
  • Click “Create a menu” to create a new menu item directly linked to your new +BI view (this feature is available in developer mode); when the BI view is +reset back to draft this menu will be removed, and you will need to re-create +the menu entry.
  • +
+

A more advanced UI is also available under the “Details” tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN.

+

It also possible to improve the IDs generation for new views by adding an +Over Condition in the “SQL” tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views.

+
+
+

Known issues / Roadmap

+
    +
  • Non-stored fields and many2many fields are not supported.
  • +
  • Provide a tutorial (eg. a working example of usage).
  • +
  • Find better ways to extend the _auto_init() without override.
  • +
  • Possibly avoid the monkey patches.
  • +
  • Data the user has no access to (e.g. in a multi company situation) can be +viewed by making a view. Would be nice if models available to select when +creating a view are limited to the ones that have intersecting groups.
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Onestein
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+
+

Funders

+

The development of this module for Odoo 11.0 has been financially supported by:

+ +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

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

+

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

+
+
+
+ + diff --git a/bi_view_editor/static/description/main_screenshot.png b/bi_view_editor/static/description/main_screenshot.png new file mode 100644 index 0000000000..66789facc4 Binary files /dev/null and b/bi_view_editor/static/description/main_screenshot.png differ diff --git a/bi_view_editor/static/src/css/bve.css b/bi_view_editor/static/src/css/bve.css new file mode 100644 index 0000000000..83fe9ae47e --- /dev/null +++ b/bi_view_editor/static/src/css/bve.css @@ -0,0 +1,198 @@ +.oe_form_field_bi_editor { + /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);*/ + border: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .header, +.oe_form_field_bi_editor .footer { + width: 100%; + height: 50px; + background-color: #7c7bad; + color: #000; +} + +.oe_form_field_bi_editor .footer { + background-color: #fff; + border-top: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .header .left, +.oe_form_field_bi_editor .footer .left { + width: 75%; + float: left; + line-height: 50px; + padding-left: 10px; + padding-top: 13px; +} + +.oe_form_field_bi_editor .header .right, +.oe_form_field_bi_editor .footer .right { + width: 25%; + float: right; + padding-top: 13px; + padding-right: 15px; + text-align: right; +} + +.oe_form_field_bi_editor .body { + padding-bottom: 0; +} + +.oe_form_field_bi_editor .body .left { + float: left; + width: 30%; + box-sizing: border-box; + border-right: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .body .left .search-bar { + height: 23px; + width: 100%; + position: relative; +} + +.oe_form_field_bi_editor .body .left .search-bar input { + width: 100%; + border-radius: 0; + border-left: 0; + border-right: 0; + border-top: 0; + padding-left: 18px; + padding-top: 4px; + position: absolute; + left: 0; + top: 0; + z-index: 1; +} + +.oe_form_field_bi_editor .body .left .search-bar span { + position: absolute; + left: 3px; + top: 5px; + z-index: 2; +} + +.oe_form_field_bi_editor .body .left .class-list { + height: 400px; + overflow-y: scroll; + overflow-x: hidden; +} + +.oe_form_field_bi_editor .body .left .class-list .class { + font-weight: bold; + padding-bottom: 5px; + padding-top: 5px; + padding-left: 10px; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .left .class-list.readonly { + opacity: 0.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 { + background-color: #7c7bad; + color: #fff; +} + +.oe_form_field_bi_editor .body .left .class-list .field { + font-weight: normal; + padding-left: 20px; + padding-top: 3px; + padding-bottom: 3px; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .right { + width: 70%; + float: left; + box-sizing: border-box; + height: 423px; + overflow-y: scroll; + overflow-x: hidden; +} + +.oe_form_field_bi_editor .body .right .field-list { + width: 100%; +} + +.oe_form_field_bi_editor .body .right .field-list th, +.oe_form_field_bi_editor .body .right .field-list td { + padding-left: 10px; + padding-top: 6px; + padding-bottom: 6px; + vertical-align: middle; +} + +.oe_form_field_bi_editor .body .right .field-list tbody tr button.delete-button, +.oe_form_field_bi_editor .body .right .field-list tbody tr button.delete-button:hover { + background-color: transparent; + border: none; + background-image: none; + padding: 0; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .right .field-list tbody tr:hover { + 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 { + z-index: 1000; + position: fixed; + background-color: #fff; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); + border: 1px solid #dddddd; + list-style-type: none; + padding: 0; + width: 175px; +} + +.oe_form_field_bi_editor .context-menu .checkbox label { + display: block; +} + +.oe_form_field_bi_editor .context-menu li { + padding: 5px; + cursor: pointer; +} + +.oe_form_field_bi_editor .clear-btn { + display: inline-block; +} + +.oe_form_field_bi_editor .context-menu li:hover { + background-color: #7c7bad; + color: #fff; +} + +.oe_form_field_bi_editor .context-menu ul { + display: none; + margin-left: 165px; + margin-top: -24px; +} + +.oe_form_field_bi_editor .context-menu ul:hover { + display: none; + margin-left: 165px; + margin-top: -24px; +} + +.clear { + clear: both; +} + +.oe_bi_view_editor_join_node_dialog li { + cursor: pointer; +} diff --git a/bi_view_editor/static/src/js/bi_view_editor.FieldList.js b/bi_view_editor/static/src/js/bi_view_editor.FieldList.js new file mode 100644 index 0000000000..8a70c2b635 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.FieldList.js @@ -0,0 +1,256 @@ +/* Copyright 2015-2019 Onestein () + * 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 mixins = require("web.mixins"); + + var FieldListContextMenu = Widget.extend( + _.extend({}, mixins.EventDispatcherMixin, { + start: function () { + var res = this._super.apply(this, arguments); + this.$el.mouseleave(function () { + $(this).addClass("d-none"); + }); + return res; + }, + open: function (x, y) { + this.$el.css({ + left: x + "px", + top: y + "px", + }); + this.$el.removeClass("d-none"); + return this; + }, + }) + ); + + var FieldListFieldContextMenu = FieldListContextMenu.extend({ + template: "bi_view_editor.FieldList.FieldContextMenu", + open: function (x, y, $item) { + var field = $item.data("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, $item); + }); + + return events; + }, + }); + + var FieldListJoinContextMenu = FieldListContextMenu.extend({ + template: "bi_view_editor.FieldList.JoinContextMenu", + open: function (x, y, $item) { + var node = $item.data("field"); + 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.on( + "change", + this, + function (f, $item) { + $item.data("field", f); + this.refreshItem($item); + this.trigger("updated"); + }.bind(this) + ); + this.contextmenu_join = new FieldListJoinContextMenu(this); + this.contextmenu_join.appendTo(this.$el); + this.contextmenu_join.on( + "change", + this, + function (f, $item) { + $item.data("field", f); + this.refreshItem($item); + this.trigger("updated"); + }.bind(this) + ); + 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").addClass("d-none"); + } else { + this.$el.find('input[type="text"]').removeAttr("disabled"); + this.$el.find(".delete-button").removeClass("d-none"); + } + 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" ? true : 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); + }, + remove: function (id) { + var $item = this.$el.find('tr[data-id="' + id + '"]'); + $item.remove(); + 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]); + } + }, + 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); + }, + 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("d-none"); + } else { + $attribute.addClass("d-none"); + } + }); + }, + removeClicked: function (e) { + var $button = $(e.currentTarget); + var id = $button.attr("data-id"); + this.remove(id); + }, + keyupDescription: function () { + this.trigger("updated"); + }, + }); + + return { + FieldList: FieldList, + FieldListContextMenu: FieldListContextMenu, + FieldListFieldContextMenu: FieldListFieldContextMenu, + FieldListJoinContextMenu: FieldListJoinContextMenu, + }; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js b/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js new file mode 100644 index 0000000000..12f072e77f --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js @@ -0,0 +1,55 @@ +/* Copyright 2015-2019 Onestein () + * 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; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.ModelList.js b/bi_view_editor/static/src/js/bi_view_editor.ModelList.js new file mode 100644 index 0000000000..2883f740d7 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.ModelList.js @@ -0,0 +1,170 @@ +/* Copyright 2015-2019 Onestein () + * 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 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) { + return this._rpc({ + model: "ir.model", + method: "get_models", + args: model_ids ? [model_ids] : [], + }); + }, + loadFields: function (model_id) { + if (!(model_id in this.cache_fields)) { + var deferred = this._rpc({ + model: "ir.model", + method: "get_fields", + args: [model_id], + }); + 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).then(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).then( + 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("d-none"); + } else { + $(this).removeClass("d-none"); + } + }); + this.current_filter = val; + }, + }); + + return ModelList; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.js b/bi_view_editor/static/src/js/bi_view_editor.js new file mode 100644 index 0000000000..771855538b --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.js @@ -0,0 +1,163 @@ +/* Copyright 2015-2019 Onestein () + * 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")).then( + function () { + 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(); + }.bind(this) + ); + + return res; + }, + clear: function () { + if (this.mode !== "readonly") { + this.field_list.set([]); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + } + }, + fieldListChanged: function () { + this._setValue(this.field_list.get()); + }, + fieldListRemoved: function () { + this._setValue(this.field_list.get()); + var model = new Data.DataSet(this, "bve.view"); + model.call("get_clean_list", [this.lastSetValue]).then( + function (result) { + this.field_list.set(JSON.parse(result)); + this._setValue(this.field_list.get()); + }.bind(this) + ); + this.loadAndPopulateModelList(); + }, + renderValue: function () { + this.field_list.set(JSON.parse(this.value)); + }, + updateMode: function () { + if (this.mode === "readonly") { + this.$el.find(".clear-btn").addClass("d-none"); + this.$el.find(".body .right").droppable("option", "disabled", true); + } else { + this.$el.find(".clear-btn").removeClass("d-none"); + 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).then( + 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 = 1; + 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(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 { + data.table_alias = this.getTableAlias(data); + this.field_list.add(data); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + } + }.bind(this) + ); + }, + _parseValue: function (value) { + return JSON.stringify(value); + }, + }); + + field_registry.add("BVEEditor", BiViewEditor); +}); diff --git a/bi_view_editor/static/src/xml/bi_view_editor.xml b/bi_view_editor/static/src/xml/bi_view_editor.xml new file mode 100644 index 0000000000..c69828e554 --- /dev/null +++ b/bi_view_editor/static/src/xml/bi_view_editor.xml @@ -0,0 +1,261 @@ + + diff --git a/bi_view_editor/tests/__init__.py b/bi_view_editor/tests/__init__.py new file mode 100644 index 0000000000..b88bba13b4 --- /dev/null +++ b/bi_view_editor/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import test_bi_view diff --git a/bi_view_editor/tests/test_bi_view.py b/bi_view_editor/tests/test_bi_view.py new file mode 100644 index 0000000000..c037110b6b --- /dev/null +++ b/bi_view_editor/tests/test_bi_view.py @@ -0,0 +1,425 @@ +# Copyright 2017-2019 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import json + +import odoo +from odoo.exceptions import UserError, ValidationError +from odoo.tests.common import TransactionCase +from odoo.tools import mute_logger + +from ..hooks import uninstall_hook + + +class TestBiViewEditor(TransactionCase): + def setUp(self): + def _get_models(model_name_list): + return ( + self.env["ir.model"].sudo().search([("model", "=", name)]) + for name in model_name_list + ) + + def _get_fields(model_field_list): + return ( + self.env["ir.model.fields"] + .sudo() + .search( + [("model", "=", model_field[0]), ("name", "=", model_field[1])], + limit=1, + ) + for model_field in model_field_list + ) + + def get_new_field(self): + return { + "model_id": self.partner_model.id, + "name": self.partner_field_name, + "id": self.partner_field.id, + "model": self.partner_model_name, + "type": self.partner_field.ttype, + "model_name": self.partner_model.name, + "description": self.partner_field.field_description, + } + + super().setUp() + self.partner_model_name = "res.partner" + self.partner_field_name = "name" + self.partner_company_field_name = "company_id" + self.company_model_name = "res.company" + self.company_field_name = "name" + + self.bi_view1 = None + + self.partner_model, self.company_model = _get_models( + [self.partner_model_name, self.company_model_name] + ) + + ( + self.partner_field, + self.partner_company_field, + self.company_field, + ) = _get_fields( + [ + (self.partner_model_name, self.partner_field_name), + (self.partner_model_name, self.partner_company_field_name), + (self.company_model_name, self.company_field_name), + ] + ) + + self.data = [ + { + "model_id": self.partner_model.id, + "model_name": self.partner_model.name, + "model": self.partner_model_name, + "type": self.partner_field.ttype, + "id": self.partner_field.id, + "description": self.partner_field.field_description, + "table_alias": "t0", + "row": 0, + "column": 1, + "list": 1, + "measure": 0, + }, + { + "model_id": self.partner_model.id, + "table_alias": "t0", + "relation": self.company_model_name, + "model": self.partner_model_name, + "model_name": self.partner_model.name, + "type": self.partner_company_field.ttype, + "id": self.partner_company_field.id, + "join_node": "t1", + "description": self.partner_company_field.field_description, + "row": 0, + "column": 0, + "list": 1, + "measure": 0, + }, + { + "model_id": self.company_model.id, + "model_name": self.company_model.name, + "model": self.company_model_name, + "type": self.company_field.ttype, + "id": self.company_field.id, + "description": self.company_field.field_description, + "table_alias": "t1", + "row": 1, + "column": 0, + "list": 0, + "measure": 0, + }, + ] + self.bi_view1_vals = {"state": "draft", "data": json.dumps(self.data)} + + self.new_field = get_new_field(self) + + def test_01_get_fields(self): + fields = self.env["ir.model"].get_fields(self.partner_model.id) + self.assertIsInstance(fields, list) + self.assertGreater(len(fields), 0) + + def test_02_get_join_nodes(self): + field_res_users = ( + self.env["ir.model.fields"] + .sudo() + .search([("name", "=", "login"), ("model", "=", "res.users")], limit=1) + ) + field_data = [ + { + "model_id": field_res_users.model_id.id, + "name": "login", + "column": False, + "table_alias": "t0", + "measure": False, + "id": field_res_users.id, + "model": "res.users", + "row": False, + "type": "char", + "model_name": "Users", + "description": "Login", + } + ] + new_field = self.new_field + nodes = self.env["ir.model"].get_join_nodes(field_data, new_field) + self.assertIsInstance(nodes, list) + self.assertGreater(len(nodes), 0) + + def test_03_get_join_nodes(self): + new_field = self.new_field + nodes = self.env["ir.model"].get_join_nodes([], new_field) + self.assertIsInstance(nodes, list) + self.assertEqual(len(nodes), 0) + + def test_04_get_related_models(self): + all_models = self.env["ir.model"].get_models() + self.assertIsInstance(all_models, list) + self.assertGreater(len(all_models), 0) + + related_models = self.env["ir.model"].get_models( + {"t0": self.partner_model.id, "t1": self.company_model.id} + ) + self.assertIsInstance(related_models, list) + self.assertGreater(len(related_models), 0) + + def test_05_create_copy_view(self): + vals = self.bi_view1_vals + vals.update({"name": "Test View1"}) + + # create + bi_view1 = self.env["bve.view"].create(vals) + self.assertIsNotNone(bi_view1) + self.assertEqual(len(bi_view1), 1) + self.assertEqual(bi_view1.state, "draft") + + # copy + bi_view2 = bi_view1.copy() + self.assertEqual(bi_view2.name, "Test View1 (copy)") + + def test_06_create_group_bve_object(self): + vals = self.bi_view1_vals + employees_group = self.env.ref("base.group_user") + vals.update({"name": "Test View2", "group_ids": [(6, 0, [employees_group.id])]}) + + bi_view2 = self.env["bve.view"].create(vals) + self.assertEqual(len(bi_view2.user_ids), len(employees_group.users)) + + def test_07_check_empty_data(self): + vals = {"name": "Test View Empty", "state": "draft", "data": ""} + bi_view4 = self.env["bve.view"].create(vals) + self.assertEqual(len(bi_view4), 1) + self.assertTrue(bi_view4.er_diagram_image) + + # create sql view + with self.assertRaises(ValidationError): + bi_view4.action_create() + + def test_08_get_models(self): + models = self.env["ir.model"].get_models() + self.assertIsInstance(models, list) + self.assertGreater(len(models), 0) + + @odoo.tests.tagged("post_install", "-at_install") + def test_09_create_open_bve_object(self): + vals = self.bi_view1_vals + employees_group = self.env.ref("base.group_user") + vals.update({"name": "Test View4", "group_ids": [(6, 0, [employees_group.id])]}) + bi_view = self.env["bve.view"].create(vals) + self.assertEqual(len(bi_view), 1) + self.assertEqual(len(bi_view.line_ids), 3) + self.assertTrue(bi_view.er_diagram_image) + + # check lines + line1 = bi_view.line_ids[0] + line2 = bi_view.line_ids[1] + line3 = bi_view.line_ids[2] + self.assertTrue(line1.in_list) + self.assertTrue(line2.in_list) + self.assertFalse(line3.in_list) + self.assertFalse(line1.row) + self.assertTrue(line1.column) + self.assertFalse(line1.measure) + self.assertFalse(line2.row) + self.assertFalse(line2.column) + self.assertFalse(line2.measure) + self.assertTrue(line3.row) + self.assertFalse(line3.column) + self.assertFalse(line3.measure) + + # create bve object + bi_view.action_create() + model = ( + self.env["ir.model"] + .sudo() + .search([("model", "=", "x_bve.testview4"), ("name", "=", "Test View4")]) + ) + self.assertEqual(len(model), 1) + + # open view + open_action = bi_view.open_view() + self.assertEqual(isinstance(open_action, dict), True) + self.assertEqual(bi_view.state, "created") + + # try to remove view + with self.assertRaises(UserError): + bi_view.unlink() + + # reset to draft + bi_view.action_reset() + self.assertEqual(bi_view.state, "draft") + + # remove view + bi_view.unlink() + + @odoo.tests.tagged("post_install", "-at_install") + def test_10_create_open_bve_object_apostrophe(self): + vals = self.bi_view1_vals + vals.update({"name": "Test View5"}) + data_list = list() + for r in json.loads(vals["data"]): + r["model_name"] = "model'name" + data_list.append(r) + new_format_data = json.dumps(data_list) + vals.update({"data": new_format_data}) + bi_view = self.env["bve.view"].create(vals) + self.assertEqual(len(bi_view), 1) + # create bve object + bi_view.action_create() + + def test_11_clean_nodes(self): + data_dict1 = { + "sequence": 1, + "model_id": 74, + "id": 858, + "name": "name", + "model_name": "Contact", + "model": "res.partner", + "type": "char", + "table_alias": "t74", + "description": "Name", + "row": False, + "column": False, + "measure": False, + "list": True, + } + data_dict2 = { + "sequence": 2, + "model_id": 74, + "id": 896, + "name": "company_id", + "model_name": "Contact", + "model": "res.partner", + "type": "many2one", + "table_alias": "t74", + "description": "Company", + "row": False, + "column": False, + "measure": False, + "list": True, + "join_node": "t83", + "relation": "res.company", + "join_left": False, + } + + old_data = json.dumps([data_dict1, data_dict2]) + new_data = self.env["bve.view"].get_clean_list(old_data) + new_data_dict = json.loads(new_data) + self.assertEqual(len(new_data_dict), 1) + for key in data_dict1.keys(): + self.assertEqual(new_data_dict[0][key], data_dict1[key]) + + def test_12_check_groups(self): + vals = self.bi_view1_vals + group_system = self.env.ref("base.group_system") + vals.update({"name": "Test View1", "group_ids": [(6, 0, [group_system.id])]}) + bi_view1 = self.env["bve.view"].create(vals) + with self.assertRaises(UserError): + bi_view1.action_create() + + def test_13_check_lines_missing_model(self): + vals = self.bi_view1_vals + group_user = self.env.ref("base.group_user") + vals.update({"name": "Test View1", "group_ids": [(6, 0, [group_user.id])]}) + bi_view1 = self.env["bve.view"].create(vals) + for line in bi_view1.line_ids: + self.assertTrue(line.model_id) + self.assertTrue(line.model_name) + self.env.cr.execute("UPDATE bve_view_line SET model_id = null") + bi_view1.invalidate_cache() + for line in bi_view1.line_ids: + self.assertFalse(line.model_id) + self.assertTrue(line.model_name) + with self.assertRaises(ValidationError): + bi_view1.action_create() + + def test_14_check_lines_missing_fieldl(self): + vals = self.bi_view1_vals + group_user = self.env.ref("base.group_user") + vals.update({"name": "Test View1", "group_ids": [(6, 0, [group_user.id])]}) + bi_view1 = self.env["bve.view"].create(vals) + for line in bi_view1.line_ids: + self.assertTrue(line.field_id) + self.assertTrue(line.field_name) + self.env.cr.execute("UPDATE bve_view_line SET field_id = null") + bi_view1.invalidate_cache() + for line in bi_view1.line_ids: + self.assertFalse(line.field_id) + self.assertTrue(line.field_name) + with self.assertRaises(ValidationError): + bi_view1.action_create() + + def test_15_create_lines(self): + vals = self.bi_view1_vals + vals.update({"name": "Test View1"}) + bi_view1 = self.env["bve.view"].create(vals) + bi_view1._compute_serialized_data() + data = json.loads(bi_view1.data) + self.assertTrue(data) + self.assertTrue(isinstance(data, list)) + + def test_17_uninstall_hook(self): + uninstall_hook(self.cr, self.env) + + def test_18_action_translations(self): + self.env["res.lang"]._activate_lang("it_IT") + vals = self.bi_view1_vals + vals.update({"name": "Test View1"}) + bi_view1 = self.env["bve.view"].create(vals) + res = bi_view1.action_translations() + self.assertFalse(res) + + bi_view1.action_create() + res = bi_view1.action_translations() + self.assertTrue(res) + + @odoo.tests.tagged("post_install", "-at_install") + def test_19_field_selection(self): + field = ( + self.env["ir.model.fields"] + .sudo() + .search( + [ + ("model", "=", self.company_model_name), + ("name", "=", "base_onboarding_company_state"), + ], + limit=1, + ) + ) + selection_data = [ + { + "model_id": self.company_model.id, + "model_name": self.company_model.name, + "model": self.company_model_name, + "type": field.ttype, + "id": field.id, + "description": "State of the onboarding company step", + "table_alias": "t1", + "row": 0, + "column": 0, + "list": 1, + "measure": 0, + } + ] + vals = {"state": "draft", "data": json.dumps(self.data + selection_data)} + + vals.update({"name": "Test View6"}) + bi_view1 = self.env["bve.view"].create(vals) + bi_view1.action_create() + self.assertEqual(len(bi_view1.line_ids), 4) + + @mute_logger("odoo.sql_db") + def test_20_broken_view(self): + """ + Create a broken query, a nice UserError should be raised. + odoo.sql_db logger is muted to avoid the + ERROR: bad_query line in the logs. + """ + vals = self.bi_view1_vals + vals.update({"name": "Test View broken", "over_condition": "bad SQL code"}) + bi_view = self.env["bve.view"].create(vals) + with self.assertRaises(UserError) as ue: + bi_view.action_create() + + self.assertEqual(bi_view.state, "draft") + self.assertIn(bi_view.over_condition, str(ue.exception)) + # remove view + bi_view.unlink() diff --git a/bi_view_editor/views/bve_view.xml b/bi_view_editor/views/bve_view.xml new file mode 100644 index 0000000000..0dfcdf8c10 --- /dev/null +++ b/bi_view_editor/views/bve_view.xml @@ -0,0 +1,192 @@ + + + + bve.view + + + + + + + + bve.view + +
+
+
+ +
+
+

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + Custom BI Views + bve.view + tree,form + +

+ Click to create a Custom Query Object. +

+

+ +

+
+
+ + +
diff --git a/bi_view_editor/wizard/__init__.py b/bi_view_editor/wizard/__init__.py new file mode 100644 index 0000000000..262e6a5c29 --- /dev/null +++ b/bi_view_editor/wizard/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import wizard_ir_model_menu_create diff --git a/bi_view_editor/wizard/wizard_ir_model_menu_create.py b/bi_view_editor/wizard/wizard_ir_model_menu_create.py new file mode 100644 index 0000000000..1812c78b9c --- /dev/null +++ b/bi_view_editor/wizard/wizard_ir_model_menu_create.py @@ -0,0 +1,42 @@ +# Copyright 2017-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class WizardModelMenuCreate(models.TransientModel): + _inherit = "wizard.ir.model.menu.create" + + def menu_create(self): + if self.env.context.get("active_model") == "bve.view": + self.ensure_one() + active_id = self.env.context.get("active_id") + bve_view = self.env["bve.view"].browse(active_id) + menu = self.env["ir.ui.menu"].create( + { + "name": self.name, + "parent_id": self.menu_id.id, + "action": "ir.actions.act_window,%d" % (bve_view.action_id,), + } + ) + self.env["ir.model.data"].sudo().create( + { + "name": bve_view.name + and str(bve_view.name).replace(" ", "") + ",id=" + str(menu.id), + "noupdate": True, + "module": "bi_view_editor", + "model": "ir.ui.menu", + "res_id": menu.id, + } + ) + return {"type": "ir.actions.client", "tag": "reload"} + return super().menu_create() + + @api.model + def default_get(self, fields_list): + defaults = super().default_get(fields_list) + if self.env.context.get("active_model") == "bve.view": + active_id = self.env.context.get("active_id") + bve_view = self.env["bve.view"].browse(active_id) + defaults.setdefault("name", bve_view.name) + return defaults diff --git a/setup/bi_view_editor/odoo/addons/bi_view_editor b/setup/bi_view_editor/odoo/addons/bi_view_editor new file mode 120000 index 0000000000..b36b4a53b2 --- /dev/null +++ b/setup/bi_view_editor/odoo/addons/bi_view_editor @@ -0,0 +1 @@ +../../../../bi_view_editor \ No newline at end of file diff --git a/setup/bi_view_editor/setup.py b/setup/bi_view_editor/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/bi_view_editor/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)