diff --git a/bi_view_editor/README.rst b/bi_view_editor/README.rst new file mode 100644 index 0000000000..81df4ff4a0 --- /dev/null +++ b/bi_view_editor/README.rst @@ -0,0 +1,187 @@ +============== +BI View Editor +============== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:2aebf98b5895f5e5ea64169daba7a945b934e2a9006b35cd20e496cee34287d1 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/18.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-18-0/reporting-engine-18-0-bi_view_editor + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +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:: 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:: bash + + ``sudo apt-get install graphviz`` + +Usage +===== + +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- BI Views creation is restricted to members of "BI View Editor Manager" + group. You can add this group to a user in User form, Access Rights, + Technical section. +- 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 +- "Create a menu" is restricted to members of "BI View Editor Manager" + group. +- 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. +- As of Odoo 16, translations of the name of a BI View and of the field + descriptions do not work as expected: the translated strings are + selected (by the user's language) when the view is generated (and + stored as their ``en_US`` value) instead of when it is displayed. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Onestein + +Contributors +------------ + +- Simon Janssens +- Diego Luis Neto +- Dennis Sluijk +- Kevin Graveman +- Richard Dijkstra +- Andrea Stirpe +- Antonio Esposito +- Jordi Ballester Alomar +- Italo LOPES +- `Coop IT Easy SC `__: + + - hugues de keyzer + +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..5186610d73 --- /dev/null +++ b/bi_view_editor/__manifest__.py @@ -0,0 +1,31 @@ +# 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": "18.0.1.1.0", + "development_status": "Beta", + "depends": [ + "spreadsheet_dashboard", + "web", + ], + "external_dependencies": {"deb": ["graphviz"], "python": ["pydot"]}, + "data": [ + "security/res_groups.xml", + "security/ir.model.access.csv", + "security/rules.xml", + "views/bve_view.xml", + ], + "assets": { + "web.assets_backend": [ + "bi_view_editor/static/src/components/**/*", + ], + }, + "uninstall_hook": "uninstall_hook", +} 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..b9220fb296 --- /dev/null +++ b/bi_view_editor/i18n/am.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..b22cdd8a00 --- /dev/null +++ b/bi_view_editor/i18n/ar.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..8d9b98ca9a --- /dev/null +++ b/bi_view_editor/i18n/bg.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..d1905fff3d --- /dev/null +++ b/bi_view_editor/i18n/bi_view_editor.pot @@ -0,0 +1,583 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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..9c055c1424 --- /dev/null +++ b/bi_view_editor/i18n/bs.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Prikaži naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Ime" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..6558b3bdda --- /dev/null +++ b/bi_view_editor/i18n/ca.po @@ -0,0 +1,590 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Veure el nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nom" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Estat" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..3938561dd0 --- /dev/null +++ b/bi_view_editor/i18n/cs.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Zobrazovaný název" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Název" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..06aa5239f0 --- /dev/null +++ b/bi_view_editor/i18n/da.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Vist navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Navn" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..f2c3d69a58 --- /dev/null +++ b/bi_view_editor/i18n/de.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-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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Aktion" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Anzeigename" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Bezeichnung" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Aktion" + +#. 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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Status" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..3e503b8ffa --- /dev/null +++ b/bi_view_editor/i18n/el_GR.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..8b2ca638d1 --- /dev/null +++ b/bi_view_editor/i18n/en_GB.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Display Name" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Name" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..c080e05ca8 --- /dev/null +++ b/bi_view_editor/i18n/es.po @@ -0,0 +1,620 @@ +# 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: 2023-11-07 20:38+0000\n" +"Last-Translator: Ivorra78 \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" +"X-Generator: Weblate 4.17\n" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s(copia)" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "(unirse a la izquierda)" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Abstract models not supported." +msgstr "No se admiten modelos abstractos." + +#. 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "Debe añadirse al menos uno de los siguientes grupos:" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__avg +msgid "Average" +msgstr "Promedio" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "BI View" +msgstr "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 +msgid "BI View Editor Lines" +msgstr "Líneas del Editor de Vistas BI" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +msgstr "Gerente del Editor de Vistas BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "Vista de Bve" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml:0 +#, python-format +msgid "Clear" +msgstr "Limpiar" + +#. 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 "Haga clic para crear un objeto de consulta personalizado." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "Columna" + +#. 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 "" +"Condición a insertar en la parte OVER de la función row_number del ID.\n" +"Por ejemplo, 'ORDER BY t1.id' crearía IDs ordenados de la misma forma que " +"los IDs de t1; de lo contrario, los IDs se asignan sin un orden específico." + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "Asistente para Crear Menú" + +#. 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 "Crear un Menú" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +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 +#. odoo-python +#: 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 "¡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_custom_reports +#: 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: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 "Descripción" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "Detalles" + +#. 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 "Diagrama ER" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "Imagen de Diagrama ER" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Error creating the view '{query}':\n" +"{error}" +msgstr "" +"Error al crear la vista '{query}':\n" +"{error}" + +#. 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 "Campo" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)s is duplicated.\n" +"Please remove the duplications." +msgstr "" +"El campo %(field_model)s/%(field_name)s está duplicado.\n" +"Por favor, elimine los duplicados." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "Nombre Campo" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "Campos" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "Faltan los siguientes campos: %(missing_fields)s." + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"Faltan los siguientes modelos: %s.\n" +"Probablemente se han desinstalado algunos módulos." + +#. 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 "En Lista" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "Líneas inconsistentes." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Join Left" +msgstr "Unirse a la Izquierda" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "Únase al Modelo" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "Nodo de Unión" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.js:0 +#, python-format +msgid "Join..." +msgstr "Únete..." + +#. 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 "Unión Izquierda" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "Líneas" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "Lista de Atributos" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "Medida" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "Modelo" + +#. 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "No hay datos para mostrar." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "No data to process." +msgstr "No hay datos que procesar." + +#. 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Options" +msgstr "Opciones" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__over_condition +msgid "Over Condition" +msgstr "Sobre Condició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 "Generador de consultas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "Relación" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Relations" +msgstr "Relaciones" + +#. 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "Fila" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "SQL" + +#. 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 "Secuencia" + +#. 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__sum +msgid "Sum" +msgstr "Suma" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "Alias de la Tabla" + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"El modelo \"%s\" no puede ser accedido sólo por usuarios con los grupos " +"seleccionados." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a measure." +msgstr "Este campo no puede ser una medida." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "Este campo no puede ser una fila o una columna." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "Tipo" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "Utilizar el nodo existente" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the field" +msgstr "Utilice el campo" + +#. 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 "Ver Tipo de Campo" + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"No se puede eliminar una vista creada. Debe ser devuelta primero a estado de " +"borrador." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "new" +msgstr "nuevo" + +#~ msgid "Custom BI View" +#~ msgstr "Vista BI personalizada" + +#~ msgid "Custom Object" +#~ msgstr "Objeto personalizado" + +#~ msgid "Custom Reports" +#~ msgstr "Informes personalizados" + +#~ 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..8f089cb380 --- /dev/null +++ b/bi_view_editor/i18n/es_AR.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Mostrar Nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..e655fb5ff4 --- /dev/null +++ b/bi_view_editor/i18n/es_CL.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..9a2cfc6f09 --- /dev/null +++ b/bi_view_editor/i18n/es_CO.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre Público" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..783a3ae916 --- /dev/null +++ b/bi_view_editor/i18n/es_CR.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..faee959657 --- /dev/null +++ b/bi_view_editor/i18n/es_DO.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..211064bcc8 --- /dev/null +++ b/bi_view_editor/i18n/es_EC.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..fb6c4f0bfd --- /dev/null +++ b/bi_view_editor/i18n/es_ES.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre para mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..5d63cbc2af --- /dev/null +++ b/bi_view_editor/i18n/es_MX.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre desplegado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..4435b01fe7 --- /dev/null +++ b/bi_view_editor/i18n/es_PE.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nombre a Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..d89cbe3ed0 --- /dev/null +++ b/bi_view_editor/i18n/es_PY.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..1a176d5f9f --- /dev/null +++ b/bi_view_editor/i18n/es_VE.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Mostrar nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nombre" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..8fdbf84f61 --- /dev/null +++ b/bi_view_editor/i18n/et.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Näidatav nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nimi" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..da56bf1afd --- /dev/null +++ b/bi_view_editor/i18n/eu.po @@ -0,0 +1,591 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Izena erakutsi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Izena" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..3b24de5c2c --- /dev/null +++ b/bi_view_editor/i18n/fa.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..2a339cd13e --- /dev/null +++ b/bi_view_editor/i18n/fi.po @@ -0,0 +1,592 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Toiminto" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nimi" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Toiminto" + +#. 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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Tila" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..dc8cd5bfe1 --- /dev/null +++ b/bi_view_editor/i18n/fr.po @@ -0,0 +1,592 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Action" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nom à afficher" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nom" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Action" + +#. 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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "État" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..05429dc66d --- /dev/null +++ b/bi_view_editor/i18n/fr_CA.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Afficher le nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nom" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..185075d906 --- /dev/null +++ b/bi_view_editor/i18n/fr_CH.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nom affiché" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "État" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..c18618b916 --- /dev/null +++ b/bi_view_editor/i18n/gl.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..a7056045c8 --- /dev/null +++ b/bi_view_editor/i18n/gl_ES.po @@ -0,0 +1,584 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..0a19340412 --- /dev/null +++ b/bi_view_editor/i18n/he.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..2aef8f10a1 --- /dev/null +++ b/bi_view_editor/i18n/hr.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: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Naziv" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..3e5a187dae --- /dev/null +++ b/bi_view_editor/i18n/hr_HR.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: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..f635124f95 --- /dev/null +++ b/bi_view_editor/i18n/hu.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Név" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..24d53654c1 --- /dev/null +++ b/bi_view_editor/i18n/id.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nama Tampilan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nama" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..bb2327d452 --- /dev/null +++ b/bi_view_editor/i18n/it.po @@ -0,0 +1,610 @@ +# 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: 2024-04-29 10:36+0000\n" +"Last-Translator: mymage \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.17\n" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "#{props.field.model_name} (#{props.field.model})" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "(join left)" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Abstract models not supported." +msgstr "I modelli astratti non sono supportati." + +#. 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "Aggiungere almeno uno dei seguenti gruppi:" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__avg +msgid "Average" +msgstr "Media" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "BI View" +msgstr "Vista BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "Editor vista BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "Righe editor vista BI" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +msgstr "Gestore editor vista BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "Vista Bve" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml:0 +#, python-format +msgid "Clear" +msgstr "Pulisci" + +#. 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 "Clicca per creare un oggetto query personalizzato." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "Colonna" + +#. 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 "" +"Condizione da inserire nella parte OVER della funzione row_number dell'ID.\n" +"Per esempio, 'ORDER BY t1.id' crea ID ordinati allo stesso modo degli ID di " +"t1; in caso contrario, gli ID vengono assegnati senza un ordine specifico." + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "Procedura guidata crea menu" + +#. 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 "Crea un menu" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +msgid "Created" +msgstr "Creato" + +#. 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 +#. odoo-python +#: 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 "Il nome della vista BI personalizzata deve essere unico!" + +#. 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "Viste BI personalizzate" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Dati" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "Descrizione" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "Dettagli" + +#. 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 visualizzato" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 "Diagramma ER" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "Immagine del diagramma ER" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Error creating the view '{query}':\n" +"{error}" +msgstr "" +"Errore nel creare la vista '{query}':\n" +"{error}" + +#. 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 "Campo" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)s is duplicated.\n" +"Please remove the duplications." +msgstr "" +"il campo %(field_model)s/%(field_name)s è duplicato.\n" +"Rimuovere i duplicati." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "Nome campo" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "Campi" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "Mancano i segenti campi: %(missing_fields)s." + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"I seguenti modelli sono mancanti: %s.\n" +"Probabilmente qualche modulo è stato disinstallato." + +#. 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 "Generare vista BI" + +#. 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 "In lista" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "Linee incoerenti." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Join Left" +msgstr "Join Left" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "Join con il modello" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "Nodo di join" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.js:0 +#, python-format +msgid "Join..." +msgstr "Join..." + +#. 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 "Left Join" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "Righe" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "List" +msgstr "Elenco" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "Attributo elenco" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "Misura" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "Modello" + +#. 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 "Nome modello" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelli" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nome" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "Nessun dato da visualizzare." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "No data to process." +msgstr "Nessuna dato da elaborare." + +#. 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 "Apri vista BI" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Options" +msgstr "Opzioni" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__over_condition +msgid "Over Condition" +msgstr "Condizione superiore" + +#. 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 "Costruttore query" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "Relazione" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Relations" +msgstr "Relazioni" + +#. 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 "Reimposta a bozza" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "Riga" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "SQL" + +#. 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 "Sequenza" + +#. 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__sum +msgid "Sum" +msgstr "Somma" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "Alias tabella" + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"Il modello \"%s\" non è accessibile solo agli utenti con i gruppi " +"selezionati." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a measure." +msgstr "Questo campo non può essere una misura." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "Questo campo non può essere una riga o una colonna." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "Tipo" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "Utilizza il nodo esistente" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the field" +msgstr "Utilizza il campo" + +#. 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 "" +"Utilizzare il costruttore query speciale per definire la query che genera il " +"set di dati del resoconto. NOTA: per essere modificata, la query deve essere " +"nello stato \"Bozza\"." + +#. 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 "" +"Gruppi di utenti autorizzati a vedere il resoconto generato; se NON vengono " +"specificati gruppi, il resoconto sarà pubblico per tutti." + +#. 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 "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 "Tipo campo vista" + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"Non è possibile eliminare una vista creata! Ripristina prima la vista in " +"modalità bozza." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "new" +msgstr "nuovo" + +#~ 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..42688bab5c --- /dev/null +++ b/bi_view_editor/i18n/ja.po @@ -0,0 +1,585 @@ +# 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: 2024-01-12 07:36+0000\n" +"Last-Translator: \"Ivy Liu (QRTL)\" \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" +"X-Generator: Weblate 4.17\n" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "BI View" +msgstr "BIビュー" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BIビューエディタ" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "BIビューエディタ明細" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "カスタムBIビュー" + +#. 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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "フィールド" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "BIビュー生成" + +#. 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "BIビューを開く" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "SQL" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "タイプ" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..6f7ccc5203 --- /dev/null +++ b/bi_view_editor/i18n/ko.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..7f5c1b704c --- /dev/null +++ b/bi_view_editor/i18n/lt.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Pavadinimas" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..9e8ba52c73 --- /dev/null +++ b/bi_view_editor/i18n/lt_LT.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..447a1c4b22 --- /dev/null +++ b/bi_view_editor/i18n/lv.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nosaukums" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..af65d3b011 --- /dev/null +++ b/bi_view_editor/i18n/mk.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..e92e1952a9 --- /dev/null +++ b/bi_view_editor/i18n/mn.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..1bdacaeee0 --- /dev/null +++ b/bi_view_editor/i18n/nb.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Visnings navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Navn" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..c954ff6cc3 --- /dev/null +++ b/bi_view_editor/i18n/nb_NO.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Vis navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..3c6cd023a7 --- /dev/null +++ b/bi_view_editor/i18n/nl.po @@ -0,0 +1,624 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Actie" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, 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 Lines" +msgstr "BI Weergave bewerker" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 "Open BI Weergave" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +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 +#. odoo-python +#: 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 "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_custom_reports +#: 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: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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Model naam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Naam" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Actie" + +#. 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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "" +"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 +#. odoo-python +#: 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 "" +"U kunt een aangemaakte weergave niet verwijderen. Reset de weergave eerst " +"naar de concept fase." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Custom BI View" +#~ msgstr "Aangepaste BI Weergave" + +#~ msgid "Custom Object" +#~ msgstr "Aangepast object" + +#~ msgid "Custom Reports" +#~ msgstr "Aangepaste rapporten" + +#~ 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..73a78de75b --- /dev/null +++ b/bi_view_editor/i18n/nl_BE.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Naam:" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..73a3a01e43 --- /dev/null +++ b/bi_view_editor/i18n/pl.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nazwa" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..92edd0c4ff --- /dev/null +++ b/bi_view_editor/i18n/pt.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nome" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nome" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..10322cc619 --- /dev/null +++ b/bi_view_editor/i18n/pt_BR.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: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Ação" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nome para Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nome" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Ação" + +#. 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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Estado" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..22642f6962 --- /dev/null +++ b/bi_view_editor/i18n/pt_PT.po @@ -0,0 +1,590 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nome a Apresentar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Nome" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..7ce3cc581e --- /dev/null +++ b/bi_view_editor/i18n/ro.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Nume Afişat" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..bbb5f8181b --- /dev/null +++ b/bi_view_editor/i18n/ru.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..d705a1e868 --- /dev/null +++ b/bi_view_editor/i18n/sk.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Zobraziť meno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Meno" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..cb5700c765 --- /dev/null +++ b/bi_view_editor/i18n/sl.po @@ -0,0 +1,627 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Ukrep" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, 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 Lines" +msgstr "BI urejevalnik prikazov" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 "Odpri BI prikaz" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +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 +#. odoo-python +#: 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 "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_custom_reports +#: 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: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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Naziv modela" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Naziv" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Ukrep" + +#. 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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "" +"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 +#. odoo-python +#: 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 "" +"Ustvarjenega prikaza ne morete brisati! Najprej morate prikaz ponastaviti v " +"osnutek." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Custom BI View" +#~ msgstr "Prilagojen BI prikaz" + +#~ msgid "Custom Object" +#~ msgstr "Prilagojen objekt" + +#~ msgid "Custom Reports" +#~ msgstr "Prilagojena poročila" + +#~ 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..d75996babe --- /dev/null +++ b/bi_view_editor/i18n/sr.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "Kreiran" + +#. module: bi_view_editor +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Ime" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..f4ea82948e --- /dev/null +++ b/bi_view_editor/i18n/sr@latin.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Ime za prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Ime:" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..30943197ea --- /dev/null +++ b/bi_view_editor/i18n/sv.po @@ -0,0 +1,604 @@ +# 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: 2024-06-27 09:55+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: Swedish (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "#{props.field.model_name} (#{props.field.model})" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopia)" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "(anslut till vänster)" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Abstract models not supported." +msgstr "Abstrakta modeller stöds inte." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Åtgärd" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "Åtminstone en av följande grupper måste läggas till:" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__avg +msgid "Average" +msgstr "Genomsnitt" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "BI View" +msgstr "BI-vy" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BI vyredigerare" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "BI vyredigerarerad" + +#. module: bi_view_editor +#: model:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +msgstr "BI vyredigeraremanager" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "Bas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "Bve vy" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml:0 +#, python-format +msgid "Clear" +msgstr "Klart" + +#. 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 "Klicka för att skapa ett anpassat Query Object." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "Kolumn" + +#. 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 "" +"Villkor som ska infogas i OVER-delen av ID:s row_number-funktion.\n" +"Till exempel skulle \"ORDER BY t1.id\" skapa ID:n som är ordnade på samma " +"sätt som t1:s ID:n. I annat fall tilldelas ID:n utan någon specifik ordning." + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "Skapa meny guiden" + +#. 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 "Skapa meny" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +msgid "Created" +msgstr "Skapad" + +#. 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 +#. odoo-python +#: 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 "Namnen på anpassade BI-vyer måste vara unika!" + +#. 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "Anpassade BI-vyer" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Uppgifter" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "Beskrivning" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "Detaljer" + +#. 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 "Visningsnamn" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +msgid "Draft" +msgstr "Utkast" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "ER-diagram" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "He Diagram Bild" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Error creating the view '{query}':\n" +"{error}" +msgstr "" +"Fel vid skapandet av vyn '{query}':\n" +"{error}" + +#. 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 "Fält" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)s is duplicated.\n" +"Please remove the duplications." +msgstr "" +"Fältet %(field_model)s/%(field_name)s är duplicerat.\n" +"Vänligen ta bort dubbletterna." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "Fältnamn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "Fält" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "Följande fält saknas: %(missing_fields)s." + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"Följande modeller saknas: %s.\n" +"Förmodligen har några moduler avinstallerats." + +#. 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 "Generera BI-vy" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Grupper" + +#. 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 "I listan" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "Inkonsekventa rader." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Join Left" +msgstr "Gå med vänster" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "Gå med i modell" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "Gå med node" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.js:0 +#, python-format +msgid "Join..." +msgstr "Gå med..." + +#. 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 "Vänster led" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "Linjer" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "Lista attribut" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "Mått" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "Modell" + +#. 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 "Modellnamn" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Namn" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "Inga data ska visas." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "No data to process." +msgstr "Inga data att bearbeta." + +#. 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 "Anteckningar" + +#. 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 "Öppna BI-vy" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "Options" +msgstr "Alternativ" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__over_condition +msgid "Over Condition" +msgstr "Över skick" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Fråga" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "Frågeverktyg" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "Relation" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Relations" +msgstr "Relationer" + +#. 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 "Återställ till utkast" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "Rad" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "SQL" + +#. 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 "Sekvens" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Stat" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__sum +msgid "Sum" +msgstr "Summa" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "Alias för tabell" + +#. module: bi_view_editor +#. odoo-python +#: 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 "" +"Modellen \"%s\" kan inte nås av användare med endast de valda grupperna." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a measure." +msgstr "Detta fält kan inte vara en åtgärd." + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "Detta fält kan inte vara en rad eller en kolumn." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "Typ" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "Använd den befintliga noden" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the field" +msgstr "Använd fältet" + +#. 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 "" +"Använd den speciella frågebyggaren för att definiera den fråga som ska " +"generera rapportens dataset. OBS: För att kunna redigeras måste frågan ha " +"statusen \"Draft\"." + +#. 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 "" +"Användargrupper som får se den genererade rapporten; om INGA grupper anges " +"kommer rapporten att vara offentlig för alla." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Användare" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Utsikt" + +#. 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 "Visa fälttyp" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Du kan inte ta bort en skapad vy! Återställ först vyn till utkast." + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "new" +msgstr "ny" diff --git a/bi_view_editor/i18n/th.po b/bi_view_editor/i18n/th.po new file mode 100644 index 0000000000..c47d1dc83e --- /dev/null +++ b/bi_view_editor/i18n/th.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..0828f555ca --- /dev/null +++ b/bi_view_editor/i18n/tr.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: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Eylem" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Adı" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. 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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Durum" + +#. 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..0f48bd22ca --- /dev/null +++ b/bi_view_editor/i18n/tr_TR.po @@ -0,0 +1,598 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "Eylem" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Tip adı" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Ad" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 "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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. 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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 "" +"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 +#. odoo-python +#: 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 "" +"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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..2440a1178a --- /dev/null +++ b/bi_view_editor/i18n/uk.po @@ -0,0 +1,588 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Name" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..54eb9aae72 --- /dev/null +++ b/bi_view_editor/i18n/vi.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "Đượ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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "Tên" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 "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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..078a7a1551 --- /dev/null +++ b/bi_view_editor/i18n/vi_VN.po @@ -0,0 +1,586 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 "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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..a706e2c632 --- /dev/null +++ b/bi_view_editor/i18n/zh_CN.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..7b89daf63f --- /dev/null +++ b/bi_view_editor/i18n/zh_TW.po @@ -0,0 +1,587 @@ +# 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "#{props.field.model_name} (#{props.field.model})" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"%(msg_title)s\n" +"\n" +"%(msg_details)s\n" +"%(group_list)s" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:res.groups,name:bi_view_editor.group_bve_manager +msgid "BI View Editor Manager" +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#, 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 +#: 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 +#. odoo-python +#: 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_custom_reports +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +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 +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %(field_model)s/%(field_name)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 "Field Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: %(missing_fields)s." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +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 +#. odoo-python +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.esm.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 +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/field_list.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 +#. odoo-python +#: 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 +#. odoo-python +#: 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 +#. odoo-python +#: 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:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.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 +#. odoo-python +#: 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 +#. odoo-javascript +#: code:addons/bi_view_editor/static/src/components/bi_view_editor/join_node_dialog.xml:0 +#, 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..df914db6e5 --- /dev/null +++ b/bi_view_editor/models/bve_view.py @@ -0,0 +1,596 @@ +# 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, translate=True) + 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( + 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 f'' + + 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 f'{attr}="{line.description}"' or "" + return f'' + + bve_field_lines = self.field_ids.filtered(lambda line: line.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": "list", + "model": self.model_name, + "priority": 16, + "arch": """ + {} + """.format("".join(self._create_tree_view_arch())), + } + ) + + # set the List 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": "list,graph,pivot", + "view_id": tree_view.id, + "context": "{'service_name': '" + 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 += f",\n {table}.{select} AS {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 = f"{table} AS {first_line.table_alias}" + for line in bve_view.relation_ids: + table = tables_map[line.table_alias] + table_format = f"{table} AS {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 += f" JOIN {table_format} ON {line.join_node}.id = {line.table_alias}.{line.field_id.name}" # noqa: E501 + 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 += f" JOIN {tables_map[line.join_node]} AS {line.join_node} ON {line.table_alias}.{line.field_id.name} = {line.join_node}.id" # noqa: E501 + bve_view.query = f"""SELECT {AsIs(select_str)}\n\nFROM {AsIs(from_str)}""" + + 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 line: not line.join_node) + model = ( + self.env["ir.model"] + .sudo() + .with_context(bve=True) + .create( + { + "name": self.name, + "model": self.model_name, + "state": "manual", + "field_id": [ + fields.Command.create(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 += f" * {group.full_name}\n" + 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 line: not line.model_id) + if invalid_lines: + missing_models = ", ".join(set(invalid_lines.mapped("model_name"))) + raise ValidationError( + _( + "Following models are missing: %(missing_models)s.\n" + "Probably some modules were uninstalled." + ) + % {"missing_models": missing_models} + ) + invalid_lines = self.line_ids.filtered(lambda line: not line.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 isinstance(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..af993cf2df --- /dev/null +++ b/bi_view_editor/models/bve_view_line.py @@ -0,0 +1,127 @@ +# 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 x: x.row or x.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 x: x.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 = f"x_bve_{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 = f"{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, + # FIXME: this sets the en_US value from the current language's + # translation. instead, all translations should be set with + # their corresponding value. + "field_description": line.description, + "ttype": field.ttype, + "selection": field.selection, + "size": field.size, + "state": "manual", + "readonly": True, + "translate": field.translate, + "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..99bc97e2ad --- /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", + ) + ) + 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..35fcaa3b23 --- /dev/null +++ b/bi_view_editor/models/models.py @@ -0,0 +1,47 @@ +# 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/pyproject.toml b/bi_view_editor/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/bi_view_editor/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/bi_view_editor/readme/CONTRIBUTORS.md b/bi_view_editor/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..83cb06e76b --- /dev/null +++ b/bi_view_editor/readme/CONTRIBUTORS.md @@ -0,0 +1,11 @@ +- Simon Janssens \<\> +- Diego Luis Neto \<\> +- Dennis Sluijk \<\> +- Kevin Graveman \<\> +- Richard Dijkstra \<\> +- Andrea Stirpe \<\> +- Antonio Esposito \<\> +- Jordi Ballester Alomar \<\> +- Italo LOPES \<\> +- [Coop IT Easy SC](https://coopiteasy.be): + - hugues de keyzer diff --git a/bi_view_editor/readme/CREDITS.md b/bi_view_editor/readme/CREDITS.md new file mode 100644 index 0000000000..1a822ee631 --- /dev/null +++ b/bi_view_editor/readme/CREDITS.md @@ -0,0 +1,6 @@ +## Funders + +The development of this module for Odoo 11.0 has been financially +supported by: + +- IDEAL Connaissances SAS diff --git a/bi_view_editor/readme/DESCRIPTION.md b/bi_view_editor/readme/DESCRIPTION.md new file mode 100644 index 0000000000..50b1374a25 --- /dev/null +++ b/bi_view_editor/readme/DESCRIPTION.md @@ -0,0 +1,12 @@ +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.md b/bi_view_editor/readme/INSTALL.md new file mode 100644 index 0000000000..9681cf87d6 --- /dev/null +++ b/bi_view_editor/readme/INSTALL.md @@ -0,0 +1,20 @@ +In the Odoo configuration file add `bi_view_editor` in the list +`server_wide_modules`: + +``` 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: + +``` bash +``sudo apt-get install graphviz`` +``` diff --git a/bi_view_editor/readme/ROADMAP.md b/bi_view_editor/readme/ROADMAP.md new file mode 100644 index 0000000000..e40145035a --- /dev/null +++ b/bi_view_editor/readme/ROADMAP.md @@ -0,0 +1,12 @@ +- 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. +- As of Odoo 16, translations of the name of a BI View and of the field + descriptions do not work as expected: the translated strings are + selected (by the user's language) when the view is generated (and + stored as their `en_US` value) instead of when it is displayed. diff --git a/bi_view_editor/readme/USAGE.md b/bi_view_editor/readme/USAGE.md new file mode 100644 index 0000000000..f7d8b00bc4 --- /dev/null +++ b/bi_view_editor/readme/USAGE.md @@ -0,0 +1,34 @@ +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- BI Views creation is restricted to members of "BI View Editor Manager" + group. You can add this group to a user in User form, Access Rights, + Technical section. +- 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 +- "Create a menu" is restricted to members of "BI View Editor Manager" + group. +- 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 + +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..b45744f746 --- /dev/null +++ b/bi_view_editor/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_bve_view_everyone_user,bve.view.user,bi_view_editor.model_bve_view,base.group_user,1,0,0,0 +access_bve_view_everyone_manager,bve.view.manager,bi_view_editor.model_bve_view,bi_view_editor.group_bve_manager,1,1,1,1 +access_bve_view_line_user,access_bve_view_line_user,bi_view_editor.model_bve_view_line,base.group_user,1,0,0,0 +access_bve_view_line_manager,access_bve_view_line_manager,bi_view_editor.model_bve_view_line,bi_view_editor.group_bve_manager,1,1,1,1 diff --git a/bi_view_editor/security/res_groups.xml b/bi_view_editor/security/res_groups.xml new file mode 100644 index 0000000000..a7ff4b9756 --- /dev/null +++ b/bi_view_editor/security/res_groups.xml @@ -0,0 +1,12 @@ + + + + BI View Editor Manager + + + + + 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..0e6f5dfa38 --- /dev/null +++ b/bi_view_editor/static/description/index.html @@ -0,0 +1,536 @@ + + + + + +BI View Editor + + + +
+

BI View Editor

+ + +

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

+

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”
  • +
  • BI Views creation is restricted to members of “BI View Editor Manager” +group. You can add this group to a user in User form, Access Rights, +Technical section.
  • +
  • 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
  • +
  • “Create a menu” is restricted to members of “BI View Editor Manager” +group.
  • +
  • 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.
  • +
  • As of Odoo 16, translations of the name of a BI View and of the field +descriptions do not work as expected: the translated strings are +selected (by the user’s language) when the view is generated (and +stored as their en_US value) instead of when it is displayed.
  • +
+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • 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/components/bi_view_editor/bi_view_editor.css b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.css new file mode 100644 index 0000000000..e0f21214f7 --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.css @@ -0,0 +1,210 @@ +.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: inherit; +} + +.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 .class.readonly:hover { + background-color: inherit; + color: inherit; +} + +.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; +} + +.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.readonly:hover { + background-color: inherit; +} + +.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; +} + +.o_field_widget.o_field_BVEEditor { + width: 100%; +} diff --git a/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.esm.js b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.esm.js new file mode 100644 index 0000000000..21dc3590d3 --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.esm.js @@ -0,0 +1,222 @@ +/** @odoo-module **/ + +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +import {Component, onWillUpdateProps, useState} from "@odoo/owl"; +import {FIELD_DATA_TYPE, ModelList} from "./model_list.esm"; +import {FieldList} from "./field_list.esm"; +import {JoinNodeDialog} from "./join_node_dialog.esm"; +import {registry} from "@web/core/registry"; +import {standardFieldProps} from "@web/views/fields/standard_field_props"; +import {useService} from "@web/core/utils/hooks"; +import {uniqueId} from "@web/core/utils/functions"; + +export class BiViewEditor extends Component { + static components = { + ModelList, + FieldList, + }; + static template = "bi_view_editor.Frame"; + static props = { + ...standardFieldProps, + }; + setup() { + this.state = useState({ + models: [], + fields: [], + // This allows to access fields by their _id property in an + // efficient way. Since the fields array length is normally quite + // small, it would also be possible to use + // fields.find(element => element._id == field._id), but that + // would mean that this function would be defined in 3 places + // (deleteField(), setFieldProperty() and + // FieldList.setFieldProperty()), and using a common function + // would be quite similar to using this object. + fieldsByID: {}, + }); + this.orm = useService("orm"); + this.dialogService = useService("dialog"); + onWillUpdateProps((nextProps) => { + this.updateFields(nextProps.value); + }); + this.updateFields(this.props.value); + } + get modelIDs() { + const model_ids = {}; + for (const field of this.state.fields) { + model_ids[field.table_alias] = field.model_id; + } + return model_ids; + } + get modelData() { + const model_data = {}; + for (const field of this.state.fields) { + model_data[field.table_alias] = { + model_id: field.model_id, + model_name: field.model_name, + }; + } + return model_data; + } + _addField(field) { + 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; + } + + let i = 0; + const name = field.name; + while ( + this.state.fields.filter(function (item) { + return item.name === field.name; + }).length > 0 + ) { + field.name = name + "_" + i; + i++; + } + this.state.fields.push(field); + this.state.fieldsByID[field._id] = field; + } + deleteField(field) { + this.state.fields.splice( + this.state.fields.findIndex((element) => { + return element._id === field._id; + }), + 1 + ); + delete this.state.fieldsByID[field._id]; + this.fieldDeleted(); + } + setFieldProperty(field, property, value) { + this.state.fieldsByID[field._id][property] = value; + this.fieldUpdated(); + } + setFields(fields) { + this.state.fields = []; + this.state.fieldsByID = {}; + for (const field of fields) { + this._addField(field); + } + } + updateFields(value) { + if (value) { + this.setFields(JSON.parse(value)); + } + this.updateModels(); + } + updateModels() { + const model_ids = this.modelIDs; + this.orm + .call("ir.model", "get_models", model_ids ? [model_ids] : []) + .then((models) => { + this.state.models = models; + }); + } + clear() { + if (this.props.readonly) { + return; + } + this.setFields([]); + this.updateValue(); + } + fieldUpdated() { + this.updateValue(); + } + fieldDeleted() { + this.orm + .call("bve.view", "get_clean_list", [this.state.fields]) + .then((result) => { + this.updateFields(result); + this.updateValue(); + }); + } + getTableAlias(field) { + if (typeof field.table_alias === "undefined") { + const model_ids = this.modelIDs; + let n = 1; + while (typeof model_ids["t" + n] !== "undefined") { + n++; + } + return "t" + n; + } + return field.table_alias; + } + addFieldAndJoinNode(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._addField(join_node); + } else { + field.table_alias = join_node.table_alias; + } + + this._addField(field); + this.updateValue(); + } + addField(field) { + const data = {...field}; + const field_data = this.state.fields; + this.orm + .call("ir.model", "get_join_nodes", [field_data, data]) + .then((result) => { + if (result.length === 1) { + this.addFieldAndJoinNode(data, result[0]); + } else if (result.length > 1) { + this.dialogService.add(JoinNodeDialog, { + choices: result, + model_data: this.modelData, + choiceSelected: (choice) => { + this.addFieldAndJoinNode(data, choice); + }, + }); + } else { + data.table_alias = this.getTableAlias(data); + this._addField(data); + this.updateValue(); + } + }); + } + fieldClicked(field) { + this.addField(field); + } + onDragOver(e) { + if (this.props.readonly) { + return; + } + const dragType = e.dataTransfer.types[0]; + if (dragType === FIELD_DATA_TYPE) { + e.preventDefault(); + e.dataTransfer.dropEffect = "copy"; + } + } + onDrop(e) { + if (this.props.readonly) { + return; + } + const dragData = e.dataTransfer.getData(FIELD_DATA_TYPE); + if (dragData) { + e.preventDefault(); + this.addField(JSON.parse(dragData)); + } + } + updateValue() { + // This.props.update(JSON.stringify(this.state.fields)); + this.updateModels(); + } +} + +export const BiViewEditorField = { + component: BiViewEditor, +}; + +registry.category("fields").add("BVEEditor", BiViewEditorField); diff --git a/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml new file mode 100644 index 0000000000..1dcaea606a --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/bi_view_editor.xml @@ -0,0 +1,39 @@ + + + +
+
+
+ +
+
+ +
+
+
+ + + diff --git a/bi_view_editor/static/src/components/bi_view_editor/field_list.esm.js b/bi_view_editor/static/src/components/bi_view_editor/field_list.esm.js new file mode 100644 index 0000000000..f875abf756 --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/field_list.esm.js @@ -0,0 +1,120 @@ +/** @odoo-module **/ + +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +import {Component, onMounted, useRef, useState} from "@odoo/owl"; + +class FieldListItem extends Component { + delete() { + this.props.delete(this.props.field); + } + descriptionChanged(e) { + this.props.setDescription(this.props.field, e.target.value); + } +} +FieldListItem.template = "bi_view_editor.FieldListItem"; +FieldListItem.props = { + field: Object, + delete: Function, + setDescription: Function, + readonly: Boolean, +}; + +class JoinListItem extends Component {} +JoinListItem.template = "bi_view_editor.JoinListItem"; +JoinListItem.props = { + field: Object, + readonly: Boolean, +}; + +class FieldListContextMenu extends Component { + setup() { + this.main = useRef("main"); + onMounted(() => { + $(this.main.el).css({ + left: this.props.position.x + "px", + top: this.props.position.y + "px", + }); + }); + } + close() { + this.props.close(); + } + onChange(property, e) { + this.props.onChange(this.props.field, property, e.target.checked); + } +} +FieldListContextMenu.props = { + field: Object, + position: Object, + close: Function, + onChange: Function, +}; + +class FieldListFieldContextMenu extends FieldListContextMenu { + get measurable() { + const type = this.props.field.type; + return type === "float" || type === "integer" || type === "monetary"; + } +} +FieldListFieldContextMenu.template = "bi_view_editor.FieldList.FieldContextMenu"; + +class FieldListJoinContextMenu extends FieldListContextMenu {} +FieldListJoinContextMenu.template = "bi_view_editor.FieldList.JoinContextMenu"; + +export class FieldList extends Component { + setup() { + this.state = useState({ + contextMenuOpen: null, + contextMenuField: null, + contextMenuPosition: null, + }); + } + setFieldProperty(field, property, value) { + this.props.setFieldProperty(field, property, value); + // This can trigger a recreation of all the field objects. If this is + // called while the context menu is open, contextMenuField refers to a + // field that is not in the list anymore. The reference must thus be + // updated. + if (this.state.contextMenuField !== null) { + this.state.contextMenuField = + this.props.fieldsByID[this.state.contextMenuField._id]; + } + } + setFieldDescription(field, description) { + this.setFieldProperty(field, "description", description); + } + openContextMenu(which, field, e) { + if (this.props.readonly) { + return; + } + e.preventDefault(); + // Temporarily disable contextmenu for join node (until left join is implemented) + if (field.join_node) { + return; + } + this.state.contextMenuField = field; + this.state.contextMenuPosition = {x: e.x - 20, y: e.y - 20}; + this.state.contextMenuOpen = which; + } + closeContextMenu() { + this.state.contextMenuOpen = null; + this.state.contextMenuField = null; + this.state.contextMenuPosition = null; + } +} +FieldList.template = "bi_view_editor.FieldList"; +FieldList.components = { + FieldListItem, + JoinListItem, + FieldListFieldContextMenu, + FieldListJoinContextMenu, +}; +FieldList.props = { + fields: Object, + fieldsByID: Object, + deleteField: Function, + setFieldProperty: Function, + readonly: Boolean, +}; diff --git a/bi_view_editor/static/src/components/bi_view_editor/field_list.xml b/bi_view_editor/static/src/components/bi_view_editor/field_list.xml new file mode 100644 index 0000000000..7002545756 --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/field_list.xml @@ -0,0 +1,191 @@ + + + +
+ + + + + + + + + + + + + + + + + + +
NameModelOptions +
+
+ + +
+ + +
    +
  • +
    + +
    +
  • +
  • +
    + +
    +
  • +
  • +
    + +
    +
  • +
  • +
    + +
    +
  • +
+
+ + +
    +
  • +
    + +
    +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + +
diff --git a/bi_view_editor/static/src/components/bi_view_editor/model_list.esm.js b/bi_view_editor/static/src/components/bi_view_editor/model_list.esm.js new file mode 100644 index 0000000000..c58ce8edf3 --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/model_list.esm.js @@ -0,0 +1,115 @@ +/** @odoo-module **/ + +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +import {Component, useState} from "@odoo/owl"; +import {useService} from "@web/core/utils/hooks"; + +export const FIELD_DATA_TYPE = "application/x-odoo-bve-field"; + +class ModelListFieldItem extends Component { + clicked() { + if (this.props.readonly) { + return; + } + this.props.fieldClicked(this.props.field); + } + onDragStart(e) { + if (this.props.readonly) { + return; + } + e.dataTransfer.setData(FIELD_DATA_TYPE, JSON.stringify(this.props.field)); + } +} +ModelListFieldItem.template = "bi_view_editor.ModelListFieldItem"; +ModelListFieldItem.props = { + field: Object, + fieldClicked: Function, + readonly: Boolean, +}; + +class ModelListItem extends Component { + setup() { + this.state = useState({ + expanded: false, + fields: [], + }); + this._loaded = false; + this.orm = useService("orm"); + } + _loadFields() { + if (this._loaded) { + return; + } + this._loaded = true; + this.orm + .call("ir.model", "get_fields", [this.props.model.id]) + .then((fields) => { + this.state.fields = fields; + }); + } + clicked() { + if (this.props.readonly) { + return; + } + this.expanded = !this.expanded; + } + get matchesFilter() { + const filter = this.props.filter; + if (!filter) { + return true; + } + const model = this.props.model; + const result = + model.name.toLowerCase().indexOf(filter) !== -1 || + model.model.toLowerCase().indexOf(filter) !== -1; + if (!result) { + // Filtered-out items should be collapsed + this.expanded = false; + } + return result; + } + get expanded() { + return this.state.expanded && !this.props.readonly; + } + set expanded(expanded) { + if (expanded === this.state.expanded) { + return; + } + if (expanded) { + this._loadFields(); + } + this.state.expanded = expanded; + } +} +ModelListItem.template = "bi_view_editor.ModelListItem"; +ModelListItem.components = { + ModelListFieldItem, +}; +ModelListItem.props = { + model: Object, + filter: String, + fieldClicked: Function, + readonly: Boolean, +}; + +export class ModelList extends Component { + setup() { + this.state = useState({ + filter: "", + }); + } + filterChanged(e) { + this.state.filter = e.target.value; + } +} +ModelList.template = "bi_view_editor.ModelList"; +ModelList.components = { + ModelListItem, +}; +ModelList.props = { + models: Object, + fieldClicked: Function, + readonly: Boolean, +}; diff --git a/bi_view_editor/static/src/components/bi_view_editor/model_list.xml b/bi_view_editor/static/src/components/bi_view_editor/model_list.xml new file mode 100644 index 0000000000..d4e04dfc1f --- /dev/null +++ b/bi_view_editor/static/src/components/bi_view_editor/model_list.xml @@ -0,0 +1,60 @@ + + + +
+ +
+ + + +
+
+
+ + +
+
+ +
+ + + + + +
+
+ + +
+ +
+
+
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..12de102af8 --- /dev/null +++ b/bi_view_editor/tests/test_bi_view.py @@ -0,0 +1,413 @@ +# 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.line_ids.invalidate_recordset() + 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.line_ids.invalidate_recordset() + 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) + + @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", "=", "font"), + ], + 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..1b04e7f1cb --- /dev/null +++ b/bi_view_editor/views/bve_view.xml @@ -0,0 +1,176 @@ + + + + Custom BI Views + bve.view + list,form + +

+ Click to create a Custom Query Object. +

+

+ + + + + + + + bve.view + + + + + + + + bve.view + +

+
+
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
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/requirements.txt b/requirements.txt index c208f5bc3f..10a2821dd4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ # generated from manifests external_dependencies +pydot xlrd xlsxwriter