update all kept modules to OCA 19.0 versions

bi_sql_editor 19.0.1.0.1, report_csv 19.0.1.0.0,
report_qweb_element_page_visibility 19.0.1.0.0,
report_xlsx_helper 19.0.1.0.0, report_xml 19.0.1.0.0,
sql_request_abstract 19.0.1.0.0

🤖 assisted by claude
This commit is contained in:
Ernad Husremovic 2026-03-09 22:24:48 +01:00
parent 05df50b41d
commit c18e7fd4c7
258 changed files with 8677 additions and 6341 deletions

View file

@ -1,3 +1,7 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association
============= =============
BI SQL Editor BI SQL Editor
============= =============
@ -7,68 +11,71 @@ BI SQL Editor
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !! !! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:1849ead08bc0511282f7e09107fa343bb9ea126755bcc3d05294d954aeca26a3 !! source digest: sha256:9a7186167db4d48168e2f8f904d2fd9e6ef20d25fcf521a350050d270feb036e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status :target: https://odoo-community.org/page/development-status
:alt: Beta :alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
:target: https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor :target: https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor
:alt: OCA/reporting-engine :alt: OCA/reporting-engine
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-bi_sql_editor :target: https://translation.odoo-community.org/projects/reporting-engine-19-0/reporting-engine-19-0-bi_sql_editor
:alt: Translate me on Weblate :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png .. |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=16.0 :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=19.0
:alt: Try me on Runboat :alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5| |badge1| |badge2| |badge3| |badge4| |badge5|
This module extends the functionality of reporting, to support creation This module extends the functionality of reporting, to support creation
of extra custom reports. of extra custom reports. It allows user to write a custom SQL request.
It allows user to write a custom SQL request. (Generally, admin users) (Generally, admin users)
Once written, a new model is generated, and user can map the selected field Once written, a new model is generated, and user can map the selected
with odoo fields. field with odoo fields. Then user ends the process, creating new menu,
Then user ends the process, creating new menu, action and graph view. action and graph view.
Technically, the module create SQL View (or materialized view, if option is Technically, the module create SQL View (or materialized view, if option
checked). Materialized view duplicates datas, but request are fastest. If is checked). Materialized view duplicates datas, but request are
materialized view is enabled, this module will create a cron task to refresh fastest. If materialized view is enabled, this module will create a cron
the data). task to refresh the data).
By default, users member of 'SQL Request / User' can see all the views. By default, users member of 'SQL Request / User' can see all the views.
You can specify extra groups that have the right to access to a specific view. You can specify extra groups that have the right to access to a specific
view.
Warning Warning
------- -------
This module is intended for technician people in a company and for Odoo integrators. This module is intended for technician people in a company and for Odoo
integrators.
It requires the user to know SQL syntax and Odoo models. It requires the user to know SQL syntax and Odoo models.
If you don't have such skills, do not try to use this module specially on a production If you don't have such skills, do not try to use this module specially
environment. on a production environment.
Use Cases Use Cases
--------- ---------
this module is interesting for the following use cases this module is interesting for the following use cases
* You want to realize technical SQL requests, that Odoo framework doesn't allow - You want to realize technical SQL requests, that Odoo framework
(For exemple, UNION with many SELECT) A typical use case is if you want to have doesn't allow (For exemple, UNION with many SELECT) A typical use case
Sale Orders and PoS Orders datas in a same table is if you want to have Sale Orders and PoS Orders datas in a same
table
* You want to customize an Odoo report, removing some useless fields and adding - You want to customize an Odoo report, removing some useless fields and
some custom ones. In that case, you can simply select the fields of the original adding some custom ones. In that case, you can simply select the
report (sale.report model for exemple), and add your custom fields fields of the original report (sale.report model for exemple), and add
your custom fields
* You have a lot of data, and classical SQL Views have very bad performance. - You have a lot of data, and classical SQL Views have very bad
In that case, MATERIALIZED VIEW will be a good solution to reduce display duration performance. In that case, MATERIALIZED VIEW will be a good solution
to reduce display duration
**Table of contents** **Table of contents**
@ -78,17 +85,15 @@ this module is interesting for the following use cases
Configuration Configuration
============= =============
* Go to Dashboard / Configuration / SQL Views - Go to Dashboard / Configuration / SQL Views
* tip your SQL request - tip your SQL request
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png |image1|
:width: 800 px
* Select the group(s) that could have access to the view - Select the group(s) that could have access to the view
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png |image2|
:width: 800 px
Optionnaly, you can add a domain. Optionnaly, you can add a domain.
@ -96,49 +101,55 @@ A tipical domain in a multi company context is to write
``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]`` ``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]``
to make reporting depending on the current companies of the user. to make reporting depending on the current companies of the user.
* Click on the button 'Validate SQL Expression' - Click on the button 'Validate SQL Expression'
* Once the sql request checked, the module analyses the column of the view, - Once the sql request checked, the module analyses the column of the
and propose field mapping. For each field, you can decide to create an index view, and propose field mapping. For each field, you can decide to
and set if it will be displayed on the pivot graph as a column, a row or a create an index and set if it will be displayed on the pivot graph as
measure. a column, a row or a measure.
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png |image3|
:width: 800 px
* Click on the button 'Create SQL elements'. (this step could - Click on the button 'Create SQL elements'. (this step could take a
take a while, if view is materialized) while, if view is materialized)
* If it's a MATERIALIZED view: - If it's a MATERIALIZED view:
* a cron task is created to refresh - a cron task is created to refresh the view. You can so define the
the view. You can so define the frequency of the refresh. frequency of the refresh.
* the size of view (and the indexes is displayed) - the size of view (and the indexes is displayed)
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png |image4|
:width: 800 px
* Before applying the final step, you will need to add a specific Parent Menu to - Before applying the final step, you will need to add a specific Parent
use when creating the UI Menu for the report. By default, it will be set with Menu to use when creating the UI Menu for the report. By default, it
the `SQL Views` menu, which can be changed before creating the UI elements in will be set with the ``SQL Views`` menu, which can be changed before
order to have the report accessible from a different place within Odoo. creating the UI elements in order to have the report accessible from a
different place within Odoo.
* Finally, click on 'Create UI', to create new menu, action, graph view and - Finally, click on 'Create UI', to create new menu, action, graph view
search view. and search view.
.. |image1| image:: https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/01_sql_request.png
.. |image2| image:: https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/02_security_access.png
.. |image3| image:: https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/03_field_mapping.png
.. |image4| image:: https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/04_materialized_view_setting.png
Usage Usage
===== =====
To use this module, you need to: To use this module, you need to:
#. Go to 'Dashboards > SQL Reports' 1. Go to 'Dashboards > SQL Reports'
2. Select the desired report
#. Select the desired report ..
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png |usage-image1|
:width: 800 px
* You can switch to 'Graph' or 'tree' views as any report. - You can switch to 'Graph' or 'tree' views as any report.
.. |usage-image1| image:: https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/05_reporting_pivot.png
Bug Tracker Bug Tracker
=========== ===========
@ -146,7 +157,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_. Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
In case of trouble, please check there if your issue has already been reported. 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 If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. `feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues. Do not contact contributors directly about support or help with technical issues.
@ -154,31 +165,46 @@ Credits
======= =======
Authors Authors
~~~~~~~ -------
* GRAP * GRAP
Contributors Contributors
~~~~~~~~~~~~ ------------
* Sylvain LE GAL (https://twitter.com/legalsylvain) - Sylvain LE GAL (https://twitter.com/legalsylvain)
* Richard deMeester, WilldooIT (http://www.willdooit.com/)
* David James, WilldooIT (http://www.willdooit.com/)
* Guillem Casassas <guillem.casassas@forgeflow.com>
* This module is highly inspired by the work of - Richard deMeester, WilldooIT (http://www.willdooit.com/)
* Onestein: (http://www.onestein.nl/)
Module: OCA/server-tools/bi_view_editor. - David James, WilldooIT (http://www.willdooit.com/)
Link: https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor
* Anybox: (https://anybox.fr/) - Guillem Casassas guillem.casassas@forgeflow.com
Module : OCA/server-tools/materialized_sql_view
link: https://github.com/OCA/server-tools/pull/110 - Thien Vo thienvh@trobz.com
* GRAP, Groupement Régional Alimentaire de Proximité: (http://www.grap.coop/)
Module: grap/odoo-addons-misc/pos_sale_reporting - Baptiste P. baptiste@newlogic.com
link: https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting
- This module is highly inspired by the work of
- Onestein: (http://www.onestein.nl/) Module:
OCA/server-tools/bi_view_editor. Link:
https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor
- Anybox: (https://anybox.fr/) Module :
OCA/server-tools/materialized_sql_view link:
https://github.com/OCA/server-tools/pull/110
- GRAP, Groupement Régional Alimentaire de Proximité:
(http://www.grap.coop/) Module:
grap/odoo-addons-misc/pos_sale_reporting link:
https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting
Other credits
-------------
The migration of this module from 17.0 to 18.0 was financially supported
by Camptocamp.
Maintainers Maintainers
~~~~~~~~~~~ -----------
This module is maintained by the OCA. This module is maintained by the OCA.
@ -198,6 +224,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|maintainer-legalsylvain| |maintainer-legalsylvain|
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor>`_ project on GitHub. This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View file

@ -5,7 +5,7 @@
{ {
"name": "BI SQL Editor", "name": "BI SQL Editor",
"summary": "BI Views builder, based on Materialized or Normal SQL Views", "summary": "BI Views builder, based on Materialized or Normal SQL Views",
"version": "16.0.2.0.2", "version": "19.0.1.0.1",
"license": "AGPL-3", "license": "AGPL-3",
"category": "Reporting", "category": "Reporting",
"author": "GRAP,Odoo Community Association (OCA)", "author": "GRAP,Odoo Community Association (OCA)",

View file

@ -6,9 +6,9 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
--> -->
<odoo> <odoo>
<record id="base.group_no_one" model="res.groups"> <record id="base.group_no_one" model="res.groups">
<field name="users" eval="[(4, ref('base.user_admin'))]" /> <field name="user_ids" eval="[Command.link(ref('base.user_admin'))]" />
</record> </record>
<record id="sql_request_abstract.group_sql_request_user" model="res.groups"> <record id="sql_request_abstract.group_sql_request_user" model="res.groups">
<field name="users" eval="[(4, ref('base.user_demo'))]" /> <field name="user_ids" eval="[Command.link(ref('base.user_demo'))]" />
</record> </record>
</odoo> </odoo>

View file

@ -1,11 +1,8 @@
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>) # Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import SUPERUSER_ID
from odoo.api import Environment
def uninstall_hook(cr, registry): def uninstall_hook(env):
env = Environment(cr, SUPERUSER_ID, {})
recs = env["bi.sql.view"].search([]) recs = env["bi.sql.view"].search([])
for rec in recs: for rec in recs:
rec.button_set_draft() rec.button_set_draft()

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Última actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "اسم العرض" msgstr "اسم العرض"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "المعرف" msgstr "المعرف"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "آخر تحديث بواسطة"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "آخر تحديث في" msgstr "آخر تحديث في"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "النموذج" msgstr "النموذج"
@ -435,7 +428,6 @@ msgstr "الاسم"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "آخر تعديل في"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "حفظ كمسودة" #~ msgstr "حفظ كمسودة"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Име за Показване" msgstr "Име за Показване"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Последно обновено от"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последно обновено на" msgstr "Последно обновено на"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Име"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Последно обновено на"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Защита" #~ msgstr "Защита"

View file

@ -4,7 +4,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 16.0\n" "Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -16,21 +16,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -119,7 +116,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or \"form\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -204,6 +201,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -294,6 +292,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@ -307,10 +306,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI" "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI"
" Valid'." " Valid'."
@ -353,12 +358,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -371,11 +370,6 @@ msgstr ""
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -408,6 +402,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -425,7 +420,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -467,13 +461,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -501,16 +495,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -536,7 +524,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -558,7 +545,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -575,7 +561,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -666,11 +651,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -718,6 +698,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -735,6 +720,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -750,20 +745,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -2,101 +2,104 @@
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * bi_sql_editor # * bi_sql_editor
# #
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 16.0\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"Last-Translator: \n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"Language-Team: \n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \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_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "%(model_name)s pristup %(full_name)s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Kopija)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Pristup %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
msgid "Action Context" msgid "Action Context"
msgstr "Kontekst akcije" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "Action Needed" msgid "Action Needed"
msgstr "Potrebna akcija" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Action Settings" msgid "Action Settings"
msgstr "Postavke akcije" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
msgid "Allowed Groups" msgid "Allowed Groups"
msgstr "Dozvoljene grupe" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
msgid "Allowed Users" msgid "Allowed Users"
msgstr "Dozvoljeni korisnici" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
msgid "Attachment Count" msgid "Attachment Count"
msgstr "Broj priloga" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
msgid "Available" msgid "Available"
msgstr "Dostuno" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average" msgid "Average"
msgstr "Prosjek" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
msgstr "BI SQL prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field #: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "Bi SQL polje prikaza" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__parent_menu_id
msgid "" msgid ""
"By assigning a value to this field before manually creating the UI, you're " "By assigning a value to this field before manually creating the UI, you're "
"overwriting the parent menu on which the menu related to the SQL report will" "overwriting the parent menu on which the menu related to the SQL report will "
" be created." "be created."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "" msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the" "By default, Odoo will sum the values when grouping. If you wish to alter the "
" behaviour, choose an alternate Group Operator" "behaviour, choose an alternate Group Operator"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -115,22 +118,22 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
msgid "Column" msgid "Column"
msgstr "Kolona" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or \"form\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
msgstr "Tekst odvojen zarezima. Moguće vrijednosti: \"graph\", \"pivot\", \"tree\" ili \"form\"" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context" msgid "Computed Action Context"
msgstr "Izračunati kontekst akcije" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Computed Context" msgid "Computed Context"
msgstr "Izračunati kontekst" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
@ -142,12 +145,12 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Create SQL Elements" msgid "Create SQL Elements"
msgstr "Kreiraj SQL elemente" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Create UI" msgid "Create UI"
msgstr "Kreiraj UI" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
@ -164,88 +167,90 @@ msgstr "Kreirano"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "Cron zadatak koji će osvježiti materijalizirani prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context" msgid "Custom Context"
msgstr "Prilagođeni kontekst" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
msgstr "Veličina baze podataka" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context
msgid "" msgid ""
"Define here a context that will be used by default, when creating the " "Define here a context that will be used by default, when creating the action."
"action."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force
msgid "" msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be created. A typical Multi Company rule is for exemple \n" " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',False)]." "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
"('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete SQL Elements" msgid "Delete SQL Elements"
msgstr "Obriši SQL elemente" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete UI" msgid "Delete UI"
msgstr "Obriši UI" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Prikaži naziv" msgstr "Prikaži naziv"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
msgid "Extra Rule Definition" msgid "Extra Rule Definition"
msgstr "Dodatna definicija pravila" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Extras Information" msgid "Extras Information"
msgstr "Dodatne informacije" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
msgid "Field Context" msgid "Field Context"
msgstr "Kontekst polja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
msgid "Field Description" msgid "Field Description"
msgstr "Opis polja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
msgid "Field Type" msgid "Field Type"
msgstr "Tip polja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields #: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields" msgid "Fields"
msgstr "Polja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
msgid "Followers" msgid "Followers"
msgstr "Pratioci" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
msgid "Followers (Partners)" msgid "Followers (Partners)"
msgstr "Pratioci (Partneri)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
@ -258,93 +263,101 @@ msgstr ""
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection
msgid "" msgid ""
"For 'Selection' Odoo field.\n" "For 'Selection' Odoo field.\n"
" List of options, specified as a Python expression defining a list of (key, label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" " List of options, specified as a Python expression defining a list of (key, "
"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name
msgid "Full Qualified Name of the transient model that will be created." msgid "Full Qualified Name of the transient model that will be created."
msgstr "Puno kvalifikovano ime tranzijentnog modela koji će biti kreiran." msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name
msgid "Full name of the SQL view" msgid "Full name of the SQL view"
msgstr "Puno ime SQL prikaza" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
msgid "Graph Type" msgid "Graph Type"
msgstr "Tip grafikona" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator" msgid "Group Operator"
msgstr "Operator grupiranja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
msgstr "Da li je grupa promijenjena" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
msgid "Has Message" msgid "Has Message"
msgstr "Ima poruku" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "If checked, new messages require your attention." msgid "If checked, new messages require your attention."
msgstr "Ako je zakačeno, nove poruke će zahtjevati vašu pažnju" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "Ako je označeno neke poruke mogu imati grešku u dostavi." msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI" "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
" Valid'." "Valid'."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
msgstr "Naziv indeksa" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
msgid "Invisible" msgid "Invisible"
msgstr "Nevidljivo" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
msgid "Is Follower" msgid "Is Follower"
msgstr "Pratilac" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "Is Group by" msgid "Is Group by"
msgstr "Je li grupiraj po" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
msgid "Is Index" msgid "Is Index"
msgstr "Je li indeks" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized
msgid "Is Materialized View" msgid "Is Materialized View"
msgstr "Je li materijalizirani prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -353,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -371,50 +378,46 @@ msgstr "Zadnji ažurirao"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnje ažurirano" msgstr "Zadnje ažurirano"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr "Glavna zakačka"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
msgstr "Materijalizirani tekst" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum" msgid "Maximum"
msgstr "Maksimum" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "Mjera" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "Message Delivery error" msgid "Message Delivery error"
msgstr "Greška pri isporuci poruke" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
msgid "Messages" msgid "Messages"
msgstr "Poruke" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum" msgid "Minimum"
msgstr "Minimum" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
msgid "Model Name" msgid "Model Name"
msgstr "Naziv modela" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
@ -425,7 +428,6 @@ msgstr "Ime"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -434,148 +436,139 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
msgid "Note" msgid "Note"
msgstr "Zabilješka" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of Actions" msgid "Number of Actions"
msgstr "Broj akcija" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of errors" msgid "Number of errors"
msgstr "Broj grešaka" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of messages requiring action" msgid "Number of messages requiring action"
msgstr "Broj poruka koje zahtijevaju aktivnost" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of messages with delivery error" msgid "Number of messages with delivery error"
msgstr "Broj poruka sa greškama pri isporuci" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
msgid "Odoo Action" msgid "Odoo Action"
msgstr "Odoo akcija" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Odoo Cron" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr "Odoo prikaz forme"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Odoo grafički prikaz" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
msgstr "Odoo meni" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
msgid "Odoo Model" msgid "Odoo Model"
msgstr "Odoo model" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id
msgid "Odoo Pivot View" msgid "Odoo Pivot View"
msgstr "Odoo pivot prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
msgid "Odoo Rule" msgid "Odoo Rule"
msgstr "Odoo pravilo" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Odoo prikaz pretrage" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Odoo stablasti prikaz"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported" msgstr ""
msgstr "Podržani su samo prikazi grafik, pivot, stablo ili forma"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Open View" msgid "Open View"
msgstr "Otvori pogled" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
msgid "Optional (hidden)" msgid "Optional (hidden)"
msgstr "Opciono (skriveno)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
msgid "Optional (shown)" msgid "Optional (shown)"
msgstr "Opciono (prikazano)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
msgid "Parent Odoo Menu" msgid "Parent Odoo Menu"
msgstr "Roditeljski Odoo meni" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "Molimo postavite povezane modele na sljedećim poljima %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
msgid "Query" msgid "Query"
msgstr "Upit" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Refresh" msgid "Refresh"
msgstr "Osvježi" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Refresh Materialized View" msgid "Refresh Materialized View"
msgstr "Osježi materijalizirani prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Osježi materijalizirani prikaz %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
msgid "Row" msgid "Row"
msgstr "Red" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Rule Definition" msgid "Rule Definition"
msgstr "Definicija pravila" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -585,18 +578,19 @@ msgstr ""
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "SQL Fields" msgid "SQL Fields"
msgstr "SQL polja" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor #: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
msgid "SQL Reports" msgid "SQL Reports"
msgstr "SQL izvještaji" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query
msgid "" msgid ""
"SQL Request that will be inserted as the view. Take care to :\n" "SQL Request that will be inserted as the view. Take care to :\n"
" * set a name for all your selected fields, specially if you use SQL function (like EXTRACT, ...);\n" " * set a name for all your selected fields, specially if you use SQL "
"function (like EXTRACT, ...);\n"
" * Do not use 'SELECT *' or 'SELECT table.*';\n" " * Do not use 'SELECT *' or 'SELECT table.*';\n"
" * prefix the name of the selectable columns by 'x_';" " * prefix the name of the selectable columns by 'x_';"
msgstr "" msgstr ""
@ -604,44 +598,44 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type
msgid "SQL Type" msgid "SQL Type"
msgstr "SQL tip" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type
msgid "SQL Type in the database" msgid "SQL Type in the database"
msgstr "SQL tip u bazi podataka" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id
msgid "SQL View" msgid "SQL View"
msgstr "SQL prikaz" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid
msgid "SQL View and Model Created" msgid "SQL View and Model Created"
msgstr "SQL prikaz i model kreiran" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view #: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view #: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view
msgid "SQL Views" msgid "SQL Views"
msgstr "SQL prikazi" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
msgid "Selection Options" msgid "Selection Options"
msgstr "Opcije izbora" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
msgid "Size of the materialized view and its indexes" msgid "Size of the materialized view and its indexes"
msgstr "Veličina materijalizovanog prikaza i njegovih indeksa" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state
msgid "State" msgid "State"
msgstr "Status" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
@ -656,42 +650,36 @@ msgstr ""
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name
msgid "" msgid ""
"Suffix of the SQL view. SQL full name will be computed and prefixed by " "Suffix of the SQL view. SQL full name will be computed and prefixed by "
"'x_bi_sql_view_'. Syntax should follow: " "'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/"
"https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
"SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum" msgid "Sum"
msgstr "Zbroj" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr "Tehnički detalji"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
msgstr "Tehnički naziv" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "" msgid ""
"Technical fields, used in modules that depends on this one to know if groups" "Technical fields, used in modules that depends on this one to know if groups "
" has changed, and that according access should be updated." "has changed, and that according access should be updated."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
msgid "This will be used as the name of the Odoo field, displayed for users" msgid "This will be used as the name of the Odoo field, displayed for users"
msgstr "Ovo će biti korišeno kao naziv Odoo polja, prikazano korisnicima" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "This will create Odoo View, Action and Menu" msgid "This will create Odoo View, Action and Menu"
msgstr "Ovo će kreirati Odoo prikaz, akciju i meni" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -703,30 +691,35 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
msgid "Tree Visibility" msgid "Tree Visibility"
msgstr "Vidljivost stabla" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype
msgid "" msgid ""
"Type of the Odoo field that will be created. Keep empty if you don't want to" "Type of the Odoo field that will be created. Keep empty if you don't want to "
" create a new field. If empty, this field will not be displayed neither " "create a new field. If empty, this field will not be displayed neither "
"available for search or group by function" "available for search or group by function"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Instances" msgid "UI Instances"
msgstr "UI instance" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
msgstr "Nedostupno" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Update Model Access" msgid "Update Model Access"
msgstr "Ažuriraj pristup modelu" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -735,80 +728,110 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
msgstr "Naziv pogleda" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
msgid "View Order" msgid "View Order"
msgstr "Redoslijed prikaza" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Prikazi, akcija i meni kreiran" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "Ne možete kreirati indekse na nematerijalizovanim prikazima" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
msgid "boolean" msgid "boolean"
msgstr "logični" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
msgid "char" msgid "char"
msgstr "znak" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
msgid "date" msgid "date"
msgstr "datum" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
msgid "datetime" msgid "datetime"
msgstr "datumvrijeme" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
msgid "float" msgid "float"
msgstr "decimalni" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
msgid "integer" msgid "integer"
msgstr "cijeli broj" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
msgid "many2one" msgid "many2one"
msgstr "mnogi-za-jedan" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
msgid "selection" msgid "selection"
msgstr "odabir" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
msgid "sequence" msgid "sequence"
msgstr "sekvenca" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnje mijenjano"
#~ msgid "Set to Draft"
#~ msgstr "Postavi u pripremu"
#~ msgid "Security"
#~ msgstr "Sigurnost"
#~ msgid "Draft"
#~ msgstr "U pripremi"

View file

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2022-06-15 18:05+0000\n" "PO-Revision-Date: 2025-10-29 18:28+0000\n"
"Last-Translator: jabelchi <jabelchi@gmail.com>\n" "Last-Translator: jabelchi <jabelchi@gmail.com>\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n" "Language: ca\n"
@ -17,26 +17,23 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\n" "X-Generator: Weblate 5.10.4\n"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr "%(model_name)s Accès %(full_name)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Còpia)" msgstr "%s (Còpia)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Accés %s" msgstr "Accés %s"
@ -48,7 +45,7 @@ msgstr "Context d'acció"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "Action Needed" msgid "Action Needed"
msgstr "" msgstr "És necessària una acció"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -68,7 +65,7 @@ msgstr "Usuaris permesos"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
msgid "Attachment Count" msgid "Attachment Count"
msgstr "" msgstr "Comptador adjunts"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
@ -78,7 +75,7 @@ msgstr "Disponible"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average" msgid "Average"
msgstr "" msgstr "Mitjana"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
@ -97,6 +94,9 @@ msgid ""
"overwriting the parent menu on which the menu related to the SQL report will " "overwriting the parent menu on which the menu related to the SQL report will "
"be created." "be created."
msgstr "" msgstr ""
"Si assigneu un valor a aquest camp abans de crear manualment la IU, "
"sobreescriureu el menú pare en el que es crearà el menú relacionat a "
"l'informe SQL."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
@ -104,6 +104,8 @@ msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the " "By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator" "behaviour, choose an alternate Group Operator"
msgstr "" msgstr ""
"Per defecte, Odoo suma els valors agrupats. Si voleu alterar el "
"comportament, escolliu un operador de grup alternatiu"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
@ -129,20 +131,19 @@ msgstr "Columna"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
"Text separat per comes. Valors possibles: \"graph\", \"pivot\" o \"list\""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context" msgid "Computed Action Context"
msgstr "" msgstr "Context d'acció calculat"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Computed Context" msgid "Computed Context"
msgstr "" msgstr "Context calculat"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
@ -150,11 +151,13 @@ msgid ""
"Context value that will be inserted for this field in all the views. " "Context value that will be inserted for this field in all the views. "
"Important note : please write a context with single quote." "Important note : please write a context with single quote."
msgstr "" msgstr ""
"Valor de context que s'inserirà a totes les vistes per a aquest camp. Nota "
"important: escriviu el context amb cometes simples."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Create SQL Elements" msgid "Create SQL Elements"
msgstr "" msgstr "Crear elements SQL"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -181,7 +184,7 @@ msgstr "Tasca Cron que actualitzarà la vista materialitzada"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context" msgid "Custom Context"
msgstr "" msgstr "Context personalitzat"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
@ -200,28 +203,29 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Definiu aquí la restricció d'accés a les dades.\n" "Definiu aquí la restricció d'accés a les dades.\n"
" Tingueu cura d'utilitzar el nom del camp amb el prefix 'x_'. Es crearà una " "Tingueu cura d'utilitzar el nom del camp amb el prefix 'x_'. Es crearà una "
"\"ir.rule\" global. Per exemple, una regla típica de múltiples empreses és\n" "\"ir.rule\" global. Per exemple, una regla típica de múltiples empreses és\n"
" ['|', ('x_company_id','fill_de', [user.company_id.id]),('x_company_id','='," "['|', ('x_company_id','fill_de', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete SQL Elements" msgid "Delete SQL Elements"
msgstr "" msgstr "Eliminar elements SQL"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete UI" msgid "Delete UI"
msgstr "" msgstr "Eliminar IU"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Veure el nom" msgstr "Veure el nom"
@ -238,7 +242,7 @@ msgstr "Informació addicional"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
msgid "Field Context" msgid "Field Context"
msgstr "" msgstr "Context del camp"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
@ -253,17 +257,17 @@ msgstr "Tipus de camp"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields #: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields" msgid "Fields"
msgstr "" msgstr "Camps"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
msgid "Followers" msgid "Followers"
msgstr "" msgstr "Seguidors"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
msgid "Followers (Partners)" msgid "Followers (Partners)"
msgstr "" msgstr "Seguidors (partners)"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
@ -272,7 +276,7 @@ msgid ""
" Comodel of the field." " Comodel of the field."
msgstr "" msgstr ""
"Pel camp Odoo 'Many2one'.\n" "Pel camp Odoo 'Many2one'.\n"
" Comodel del camp." "Comodel del camp."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection
@ -304,7 +308,7 @@ msgstr "Tipus de gràfic"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator" msgid "Group Operator"
msgstr "" msgstr "Operador de grup"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
@ -314,11 +318,12 @@ msgstr "Ha canviat de grup"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
msgid "Has Message" msgid "Has Message"
msgstr "" msgstr "Té missatges"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -326,20 +331,31 @@ msgstr "ID"
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "If checked, new messages require your attention." msgid "If checked, new messages require your attention."
msgstr "" msgstr ""
"Si està marcat, hi ha missatges nous que requereixen la vostra atenció."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "Si està marcat, alguns missatges tenen error d'entrega."
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr "" msgstr ""
"Si està ple, la consulta s'executarà contra una BD externa, configurada al "
"fitxer principal de configuració de Odoo. "
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
msgstr "" msgstr ""
"No es poden esborrar camps si la vista és en l'estat 'Model vàlid' o 'IU "
"vàlida'."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
@ -349,12 +365,12 @@ msgstr "Nom del índex"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
msgid "Invisible" msgid "Invisible"
msgstr "" msgstr "Invisible"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
msgid "Is Follower" msgid "Is Follower"
msgstr "" msgstr "És seguidor"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
@ -377,12 +393,8 @@ msgid ""
"It will delete the materialized view, and all the previous mapping realized " "It will delete the materialized view, and all the previous mapping realized "
"with the columns" "with the columns"
msgstr "" msgstr ""
"Això esborrarà la vista materialitzada i tots els mapejos previs realitzats "
#. module: bi_sql_editor "amb les columnes"
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
@ -396,11 +408,6 @@ msgstr "Darrera Actualització per"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Darrera Actualització el" msgstr "Darrera Actualització el"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -409,7 +416,7 @@ msgstr "Text materialitzat"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum" msgid "Maximum"
msgstr "" msgstr "Màxim"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
@ -419,20 +426,21 @@ msgstr "Mesura"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "Message Delivery error" msgid "Message Delivery error"
msgstr "" msgstr "Error de lliurament de missatge"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
msgid "Messages" msgid "Messages"
msgstr "" msgstr "Missatges"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum" msgid "Minimum"
msgstr "" msgstr "Mínim"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -450,7 +458,6 @@ msgstr "Nom"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -461,27 +468,27 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
msgid "Note" msgid "Note"
msgstr "" msgstr "Nota"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of Actions" msgid "Number of Actions"
msgstr "" msgstr "Nombre d'accions"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of errors" msgid "Number of errors"
msgstr "" msgstr "Nombre d'errors"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of messages requiring action" msgid "Number of messages requiring action"
msgstr "" msgstr "Nombre de missatges que requereixen una acció"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of messages with delivery error" msgid "Number of messages with delivery error"
msgstr "" msgstr "Nombre de missatges amb error d'entrega"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
@ -493,16 +500,16 @@ msgstr "Acció Odoo"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Cron Odoo" msgstr "Cron Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Vista gràfica Odoo" msgstr "Vista gràfica Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr "Vista de llista Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -528,17 +535,11 @@ msgstr "Regla Odoo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Vista de cerca Odoo" msgstr "Vista de cerca Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Vista de llista Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported" msgstr "Només estan suportades les vistes gràfic, pivot o llista"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -548,34 +549,33 @@ msgstr "Obrir vista"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
msgid "Optional (hidden)" msgid "Optional (hidden)"
msgstr "" msgstr "Opcional (ocult)"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
msgid "Optional (shown)" msgid "Optional (shown)"
msgstr "" msgstr "Opcional (mostrar)"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
msgid "Parent Odoo Menu" msgid "Parent Odoo Menu"
msgstr "" msgstr "Menú pare Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr "Establiu els models relacionats als camps següents %s"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
msgid "Query" msgid "Query"
msgstr "Consulta " msgstr "Consulta"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr "Refrescar"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -585,7 +585,6 @@ msgstr "Refrescar vista materialitzada"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Refrescar vista materialitzada %s" msgstr "Refrescar vista materialitzada %s"
@ -602,11 +601,12 @@ msgstr "Definició de la regla"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
msgstr "" msgstr ""
"Error SQL mentre es creava la vista %(materialized_text)s %(view_name)s :\n"
"%(error)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids
@ -702,12 +702,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum" msgid "Sum"
msgstr "" msgstr "Suma"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
@ -720,6 +715,8 @@ msgid ""
"Technical fields, used in modules that depends on this one to know if groups " "Technical fields, used in modules that depends on this one to know if groups "
"has changed, and that according access should be updated." "has changed, and that according access should be updated."
msgstr "" msgstr ""
"Camps tècnics, utilitzats en mòduls que depenen d'aquest per saber si els "
"grups han canviat, i que segons l'accés s'han d'actualitzar."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
@ -759,7 +756,12 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr "Instàncies IU"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr "Paràmetres IU"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
@ -769,7 +771,7 @@ msgstr "No disponible"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Update Model Access" msgid "Update Model Access"
msgstr "" msgstr "Actualitzar accés al model"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -777,6 +779,18 @@ msgid ""
"Update Model Access. Required if you changed groups list after having " "Update Model Access. Required if you changed groups list after having "
"created the model" "created the model"
msgstr "" msgstr ""
"Actualitzar accés al model. Necessari si heu canviat la llista de grups "
"desprès de crear el model"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr "Usar base de dades externa"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Interfície d'usuari"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
@ -786,31 +800,39 @@ msgstr "Nom a mostrar"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
msgid "View Order" msgid "View Order"
msgstr "" msgstr "Ordre de la vista"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Vistes, acció i menú creats" msgstr "Vistes, acció i menú creats"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr "Missatges del lloc web"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr "Historial de comunicació del lloc web"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "No podeu crear índexs en vistes no materialitzades" msgstr "No podeu crear índexs en vistes no materialitzades"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Només podeu eliminar vistes en esborrany. Si voleu eliminar-les, primer " "Només podeu eliminar vistes en esborrany. Si voleu esborrar-les, primer "
"passeu-les esborrany." "passeu-les a esborrany."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
@ -858,19 +880,27 @@ msgstr "selecció"
msgid "sequence" msgid "sequence"
msgstr "seqüència" msgstr "seqüència"
#~ msgid "User Interface"
#~ msgstr "Interfície d'usuari"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
#~ msgstr "" #~ msgstr ""
#~ "Text separat per comes. Valors possibles: \"gràfic\", \"pivot\" o " #~ "Text separat per comes. Valors possibles: \"gràfic\", \"pivot\" o "
#~ "\"arbre\"" #~ "\"arbre\""
#~ msgid "Odoo Tree View"
#~ msgstr "Vista de llista Odoo"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Només es suporten les vistes gràfica, pivot o llista" #~ msgstr "Només es suporten les vistes gràfica, pivot o llista"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Només podeu eliminar vistes en esborrany. Si voleu eliminar-les, primer "
#~ "passeu-les esborrany."
#~ msgid "" #~ msgid ""
#~ "Are you sure you want to set to draft this SQL View. It will delete the " #~ "Are you sure you want to set to draft this SQL View. It will delete the "
#~ "materialized view, and all the previous mapping realized with the columns" #~ "materialized view, and all the previous mapping realized with the columns"
@ -879,6 +909,9 @@ msgstr "seqüència"
#~ "Esborrarà la vista materialitzada, i tot el mapeig anterior realitzat amb " #~ "Esborrarà la vista materialitzada, i tot el mapeig anterior realitzat amb "
#~ "les columnes" #~ "les columnes"
#~ msgid "Last Modified on"
#~ msgstr "Darrera modificació el"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Passar a esborrany" #~ msgstr "Passar a esborrany"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Zobrazovaný název" msgstr "Zobrazovaný název"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Naposled upraveno"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Naposled upraveno" msgstr "Naposled upraveno"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Název"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Naposled upraveno"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Nastavit na koncept" #~ msgstr "Nastavit na koncept"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Vist navn" msgstr "Vist navn"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Id" msgstr "Id"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Sidst opdateret af"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sidst opdateret den" msgstr "Sidst opdateret den"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Navn"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sidst ændret den"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Sikkerhed" #~ msgstr "Sikkerhed"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Kopie)" msgstr "%s (Kopie)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Zugriff %s" msgstr "Zugriff %s"
@ -129,9 +126,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -200,8 +195,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -217,6 +212,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Anzeigename" msgstr "Anzeigename"
@ -308,6 +304,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -321,10 +318,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -367,12 +370,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zuletzt geändert am"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -385,11 +382,6 @@ msgstr "Zuletzt aktualisiert durch"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am" msgstr "Zuletzt aktualisiert am"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -422,6 +414,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
@ -439,7 +432,6 @@ msgstr "Bezeichnung"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -481,13 +473,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -515,16 +507,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -550,7 +536,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -572,7 +557,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -589,7 +573,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -683,11 +666,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -735,6 +713,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -752,6 +735,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -767,20 +760,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -838,6 +839,9 @@ msgstr ""
#~ "möchten? Dies wird Ihre umgesetzten Sichten und vorausgegangene " #~ "möchten? Dies wird Ihre umgesetzten Sichten und vorausgegangene "
#~ "Spaltenzuordnungen löschen" #~ "Spaltenzuordnungen löschen"
#~ msgid "Last Modified on"
#~ msgstr "Zuletzt geändert am"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Auf Entwurf setzen" #~ msgstr "Auf Entwurf setzen"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Κωδικός" msgstr "Κωδικός"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Τελευταία ενημέρωση από"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις" msgstr "Τελευταία ενημέρωση στις"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Ονομασία"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/"
"teams/23907/en_GB/)\n" "23907/en_GB/)\n"
"Language: en_GB\n" "Language: en_GB\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Display Name" msgstr "Display Name"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Last Updated by"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Last Updated on" msgstr "Last Updated on"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Name"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Last Modified on"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Set to Draft" #~ msgstr "Set to Draft"

View file

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2023-12-21 23:59+0000\n" "PO-Revision-Date: 2024-02-11 18:35+0000\n"
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n" "Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n" "Language: es\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "%(model_name)s Acceso %(full_name)s" msgstr "%(model_name)s Acceso %(full_name)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Copia)" msgstr "%s (Copia)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Acceso %s" msgstr "Acceso %s"
@ -132,9 +129,7 @@ msgstr "Columna"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -207,15 +202,15 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Defina aquí la restricción de acceso a los datos.\n" "Defina aquí la restricción de acceso a los datos.\n"
" Tenga cuidado de utilizar el nombre del campo con el prefijo 'x_'. Se " " Tenga cuidado de utilizar el nombre del campo con el prefijo 'x_'. Se "
"creará una 'ir.rule' global. Una regla típica de varias empresas es, por " "creará una 'ir.rule' global. Una regla típica de varias empresas es, por "
"ejemplo\n" "ejemplo\n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -230,6 +225,7 @@ msgstr "Eliminar UI"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -327,6 +323,7 @@ msgstr "Tiene Mensaje"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -340,10 +337,16 @@ msgstr "Si está marcada, nuevos mensajes requieren su atención."
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "si está marcada, algunos mensajes tienen un error de entrega." msgstr "si está marcada, algunos mensajes tienen un error de entrega."
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -390,12 +393,6 @@ msgstr ""
"Se borrará la vista materializada, y todos los mapeos previos realizados con " "Se borrará la vista materializada, y todos los mapeos previos realizados con "
"las columnas" "las columnas"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -408,11 +405,6 @@ msgstr "Última actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr "Adjunto Principal"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -445,6 +437,7 @@ msgstr "Mínimo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -462,7 +455,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -505,16 +497,16 @@ msgstr "Acción Odoo"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Cron de Odoo" msgstr "Cron de Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Vista gráfica Odoo" msgstr "Vista gráfica Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -540,16 +532,10 @@ msgstr "Regla Odoo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Vista de búsqueda Odoo" msgstr "Vista de búsqueda Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Vista en árbol de Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -575,7 +561,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "Por favor, establezca modelos relacionados en los siguientes campos %s" msgstr "Por favor, establezca modelos relacionados en los siguientes campos %s"
@ -597,7 +582,6 @@ msgstr "Refrescar vista materializada"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Refrescar vista materializada %s" msgstr "Refrescar vista materializada %s"
@ -614,7 +598,6 @@ msgstr "Definición de regla"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -710,8 +693,8 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
"Sufijo de la vista SQL. El nombre completo de SQL se calculará y llevará el " "Sufijo de la vista SQL. El nombre completo de SQL se calculará y llevará el "
"prefijo 'x_bi_sql_view_'. La sintaxis debe ser la siguiente: https://www." "prefijo 'x_bi_sql_view_'. La sintaxis debe ser la siguiente: https://"
"postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-" "www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-"
"IDENTIFIERS" "IDENTIFIERS"
#. module: bi_sql_editor #. module: bi_sql_editor
@ -719,11 +702,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "Suma" msgstr "Suma"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -780,6 +758,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -799,6 +782,16 @@ msgstr ""
"Actualizar acceso al modelo. Obligatorio si ha modificado la lista de grupos " "Actualizar acceso al modelo. Obligatorio si ha modificado la lista de grupos "
"después de haber creado el modelo" "después de haber creado el modelo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Interfaz de usuario"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -814,24 +807,30 @@ msgstr "Ver el pedido"
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Vistas, Acciones y Menús Creados" msgstr "Vistas, Acciones y Menús Creados"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr "Mensajes de la Página Web"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr "Historial de comunicación del sitio web"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "No se pueden crear índices en vistas no materializadas" msgstr "No se pueden crear índices en vistas no materializadas"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Sólo puedes desvincular vistas borrador.Si quieres eliminarlas, primero "
"ponlas en borrador."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
@ -879,8 +878,8 @@ msgstr "selección"
msgid "sequence" msgid "sequence"
msgstr "secuencia" msgstr "secuencia"
#~ msgid "User Interface" #~ msgid "SMS Delivery error"
#~ msgstr "Interfaz de usuario" #~ msgstr "Error en la entrega de sms"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
@ -888,10 +887,21 @@ msgstr "secuencia"
#~ "Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o " #~ "Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o "
#~ "\"tree\"" #~ "\"tree\""
#~ msgid "Odoo Tree View"
#~ msgstr "Vista en árbol de Odoo"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Sólo se admiten las vistas de gráfico, pivote o árbol" #~ msgstr "Sólo se admiten las vistas de gráfico, pivote o árbol"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Sólo puedes desvincular vistas borrador.Si quieres eliminarlas, primero "
#~ "ponlas en borrador."
#~ msgid "" #~ msgid ""
#~ "Are you sure you want to set to draft this SQL View. It will delete the " #~ "Are you sure you want to set to draft this SQL View. It will delete the "
#~ "materialized view, and all the previous mapping realized with the columns" #~ "materialized view, and all the previous mapping realized with the columns"
@ -908,15 +918,18 @@ msgstr "secuencia"
#~ "de lista de campos. Contexto personalizado se insertará en las vistas " #~ "de lista de campos. Contexto personalizado se insertará en las vistas "
#~ "creadas." #~ "creadas."
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Main Attachment"
#~ msgstr "Adjunto Principal"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Cambiar a borrador" #~ msgstr "Cambiar a borrador"
#~ msgid "Use Context Field" #~ msgid "Use Context Field"
#~ msgstr "Utilizar campo de contexto" #~ msgstr "Utilizar campo de contexto"
#~ msgid "SMS Delivery error"
#~ msgstr "Error en la entrega de sms"
#, python-format #, python-format
#~ msgid "%m/%d/%Y %H:%M:%S UTC" #~ msgid "%m/%d/%Y %H:%M:%S UTC"
#~ msgstr "%m/%d/%Y %H:%M:%S UTC" #~ msgstr "%m/%d/%Y %H:%M:%S UTC"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2023-04-07 20:23+0000\n" "PO-Revision-Date: 2023-04-07 20:23+0000\n"
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n" "Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" "Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
"teams/23907/es_AR/)\n" "23907/es_AR/)\n"
"Language: es_AR\n" "Language: es_AR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Copia)" msgstr "%s (Copia)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Acceso %s" msgstr "Acceso %s"
@ -131,9 +128,7 @@ msgstr "Columna"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -202,14 +197,14 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Defina aquí la restricción de acceso a los datos.\n" "Defina aquí la restricción de acceso a los datos.\n"
" Tenga cuidado de usar el nombre de campo con el prefijo 'x_'. Se creará una " " Tenga cuidado de usar el nombre de campo con el prefijo 'x_'. Se creará una "
"'ir.rule' global. Una regla típica de varias compañías es, por ejemplo,\n" "'ir.rule' global. Una regla típica de varias compañías es, por ejemplo,\n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -224,6 +219,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Mostrar Nombre" msgstr "Mostrar Nombre"
@ -321,6 +317,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -334,10 +331,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -380,12 +383,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -398,11 +395,6 @@ msgstr "Última actualización realizada por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización el" msgstr "Última actualización el"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -435,6 +427,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -452,7 +445,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -495,16 +487,16 @@ msgstr "Acción de Odoo"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Cron de Odoo" msgstr "Cron de Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Vista Gráfico de Odoo" msgstr "Vista Gráfico de Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -530,16 +522,10 @@ msgstr "Regla de Odoo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Vista de Búsqueda de Odoo" msgstr "Vista de Búsqueda de Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Vista Lista de Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -565,7 +551,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -587,7 +572,6 @@ msgstr "Recargar Vista Materializada"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Recargar Vista Materializada %s" msgstr "Recargar Vista Materializada %s"
@ -604,7 +588,6 @@ msgstr "Definición de Regla"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -698,19 +681,15 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
"Sufijo de la vista SQL. El nombre completo de SQL se calculará y tendrá el " "Sufijo de la vista SQL. El nombre completo de SQL se calculará y tendrá el "
"prefijo 'x_bi_sql_view_'. La sintaxis debe seguir: https://www.postgresql." "prefijo 'x_bi_sql_view_'. La sintaxis debe seguir: https://"
"org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-"
"IDENTIFIERS"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -765,6 +744,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -784,6 +768,16 @@ msgstr ""
"Actualizar Modelos de Acceso. Obligatorio si cambió la lista de grupos " "Actualizar Modelos de Acceso. Obligatorio si cambió la lista de grupos "
"después de haber creado el modelo" "después de haber creado el modelo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Interfaz de Usuario"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -799,24 +793,30 @@ msgstr "Ordenar Vista"
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Vistas, Acción y Menú Creado" msgstr "Vistas, Acción y Menú Creado"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "No puede crear índice en vistas no materializadas" msgstr "No puede crear índice en vistas no materializadas"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Solo puede desvincular vistas de borrador. Si desea eliminarlas, primero "
"configúrelas como borrador."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
@ -864,19 +864,27 @@ msgstr "selection"
msgid "sequence" msgid "sequence"
msgstr "sequence" msgstr "sequence"
#~ msgid "User Interface"
#~ msgstr "Interfaz de Usuario"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
#~ msgstr "" #~ msgstr ""
#~ "Texto separado por comas. Valores posibles: \"graph\", \"pivot\" o " #~ "Texto separado por comas. Valores posibles: \"graph\", \"pivot\" o "
#~ "\"tree\"" #~ "\"tree\""
#~ msgid "Odoo Tree View"
#~ msgstr "Vista Lista de Odoo"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Solo se soportan vistas gráfico, pivot o lista" #~ msgstr "Solo se soportan vistas gráfico, pivot o lista"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Solo puede desvincular vistas de borrador. Si desea eliminarlas, primero "
#~ "configúrelas como borrador."
#~ msgid "" #~ msgid ""
#~ "Are you sure you want to set to draft this SQL View. It will delete the " #~ "Are you sure you want to set to draft this SQL View. It will delete the "
#~ "materialized view, and all the previous mapping realized with the columns" #~ "materialized view, and all the previous mapping realized with the columns"
@ -885,6 +893,9 @@ msgstr "sequence"
#~ "Borrará la vista materializada, y todo el mapeo anterior realizado con " #~ "Borrará la vista materializada, y todo el mapeo anterior realizado con "
#~ "las columnas" #~ "las columnas"
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Restablecer a Borrador" #~ msgstr "Restablecer a Borrador"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID (identificación)" msgstr "ID (identificación)"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última actualización de"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Seguridad" #~ msgstr "Seguridad"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre Público" msgstr "Nombre Público"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Actualizado por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Actualizado" msgstr "Actualizado"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última Modificación el"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Seguridad" #~ msgstr "Seguridad"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/"
"teams/23907/es_CR/)\n" "23907/es_CR/)\n"
"Language: es_CR\n" "Language: es_CR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Ultima actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización en" msgstr "Ultima actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última actualización de"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Seguridad" #~ msgstr "Seguridad"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID (identificación)" msgstr "ID (identificación)"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última actualización de"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Cambiar a borrador" #~ msgstr "Cambiar a borrador"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre para mostrar" msgstr "Nombre para mostrar"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Draft" #~ msgid "Draft"
#~ msgstr "Borrador" #~ msgstr "Borrador"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre desplegado" msgstr "Nombre desplegado"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Ultima actualizacion por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización realizada" msgstr "Ultima actualización realizada"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima modificacion realizada"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Cambiar a borrador" #~ msgstr "Cambiar a borrador"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre a Mostrar" msgstr "Nombre a Mostrar"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Actualizado última vez por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima Actualización" msgstr "Ultima Actualización"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima Modificación en"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Seguridad" #~ msgstr "Seguridad"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Ultima actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización en" msgstr "Ultima actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/"
"teams/23907/es_VE/)\n" "23907/es_VE/)\n"
"Language: es_VE\n" "Language: es_VE\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Mostrar nombre" msgstr "Mostrar nombre"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última actualización realizada por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualizacion en" msgstr "Ultima actualizacion en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nombre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Modificada por última vez"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Seguridad" #~ msgstr "Seguridad"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Näidatav nimi" msgstr "Näidatav nimi"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Viimati uuendatud"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Viimati uuendatud" msgstr "Viimati uuendatud"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Nimi"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Viimati muudetud"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Sea mustandiks" #~ msgstr "Sea mustandiks"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Izena erakutsi" msgstr "Izena erakutsi"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Last Updated by"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Last Updated on" msgstr "Last Updated on"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -434,7 +427,6 @@ msgstr "Izena"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "نام نمایشی" msgstr "نام نمایشی"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "شناسه" msgstr "شناسه"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "آخرین به روز رسانی توسط"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "آخرین به روز رسانی در" msgstr "آخرین به روز رسانی در"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "نام"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "تاریخ آخرین به‌روزرسانی"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "امنیت" #~ msgstr "امنیت"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nimi" msgstr "Nimi"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Viimeksi päivittänyt"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Viimeksi päivitetty" msgstr "Viimeksi päivitetty"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Mall" msgstr "Mall"
@ -434,7 +427,6 @@ msgstr "Nimi"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Viimeksi muokattu"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Aseta luonnokseksi" #~ msgstr "Aseta luonnokseksi"

View file

@ -19,21 +19,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (Copie)" msgstr "%s (Copie)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Accès %s" msgstr "Accès %s"
@ -126,9 +123,7 @@ msgstr "Colonne"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -199,15 +194,15 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Définir ici les règles de restrictions d'accès aux données.\n" "Définir ici les règles de restrictions d'accès aux données.\n"
" Faite attention à utilliser des noms de champs préfixés par 'x_'. Un 'ir." " Faite attention à utilliser des noms de champs préfixés par 'x_'. Un "
"rule' global sera créé. Une règle classique en multi-companie est, par " "'ir.rule' global sera créé. Une règle classique en multi-companie est, par "
"exemple : \n" "exemple : \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -222,6 +217,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nom à afficher" msgstr "Nom à afficher"
@ -319,6 +315,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@ -332,10 +329,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -378,12 +381,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -396,11 +393,6 @@ msgstr "Dernière mise à jour par"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Dernière mise à jour le" msgstr "Dernière mise à jour le"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -433,6 +425,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modèle" msgstr "Modèle"
@ -450,7 +443,6 @@ msgstr "Nom"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -493,16 +485,16 @@ msgstr "Action Odoo"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Cron Odoo" msgstr "Cron Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Vue graphique Odoo" msgstr "Vue graphique Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -528,16 +520,10 @@ msgstr "Règle Odoo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Vue de recherche Odoo" msgstr "Vue de recherche Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Vue Liste Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -563,7 +549,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -585,7 +570,6 @@ msgstr "Rafraichir la vue matérialisée"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Rafraichir la vue matérialisée %s" msgstr "Rafraichir la vue matérialisée %s"
@ -602,7 +586,6 @@ msgstr "Définition de règle"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -707,11 +690,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "Somme" msgstr "Somme"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -766,6 +744,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -785,6 +768,16 @@ msgstr ""
"Mettre à jour l'accès au modèle. Requis si vous changez la liste de groupes, " "Mettre à jour l'accès au modèle. Requis si vous changez la liste de groupes, "
"après avoir créer le modèle" "après avoir créer le modèle"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Interface utilisateur"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -800,24 +793,30 @@ msgstr "Ordre des vues"
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Vues, Actions et menus créés" msgstr "Vues, Actions et menus créés"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "Tâche CRON qui va rafraichir la vue matérialisée" msgstr "Tâche CRON qui va rafraichir la vue matérialisée"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Vous pouvez seulement supprimer des vues en brouillon. Si vous voulez les "
"supprimer, veuillez le repasser à l'état de brouillon auparavant"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
@ -865,19 +864,27 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "Séquence" msgstr "Séquence"
#~ msgid "User Interface"
#~ msgstr "Interface utilisateur"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
#~ msgstr "" #~ msgstr ""
#~ "Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" " #~ "Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" "
#~ "ou \"tree\"" #~ "ou \"tree\""
#~ msgid "Odoo Tree View"
#~ msgstr "Vue Liste Odoo"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Seules les vues graphique, pivot et arbre sont supportées" #~ msgstr "Seules les vues graphique, pivot et arbre sont supportées"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Vous pouvez seulement supprimer des vues en brouillon. Si vous voulez les "
#~ "supprimer, veuillez le repasser à l'état de brouillon auparavant"
#~ msgid "" #~ msgid ""
#~ "Are you sure you want to set to draft this SQL View. It will delete the " #~ "Are you sure you want to set to draft this SQL View. It will delete the "
#~ "materialized view, and all the previous mapping realized with the columns" #~ "materialized view, and all the previous mapping realized with the columns"
@ -886,5 +893,8 @@ msgstr "Séquence"
#~ "supprimera la vue (matérialisée), et tout le mapping préalablement " #~ "supprimera la vue (matérialisée), et tout le mapping préalablement "
#~ "réalisé sur les colonnes" #~ "réalisé sur les colonnes"
#~ msgid "Last Modified on"
#~ msgstr "Dernière modification le"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Remettre en brouillon" #~ msgstr "Remettre en brouillon"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Afficher le nom" msgstr "Afficher le nom"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Identifiant" msgstr "Identifiant"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Dernière mise à jour par"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Dernière mise à jour le" msgstr "Dernière mise à jour le"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modèle" msgstr "Modèle"
@ -435,7 +428,6 @@ msgstr "Nom"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" "Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/"
"teams/23907/fr_CH/)\n" "23907/fr_CH/)\n"
"Language: fr_CH\n" "Language: fr_CH\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nom affiché" msgstr "Nom affiché"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Modifié par"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Modifié le" msgstr "Modifié le"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Dernière modification le"
#~ msgid "Draft" #~ msgid "Draft"
#~ msgstr "Brouillon" #~ msgstr "Brouillon"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última modificación"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "ültima actualización por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Nome"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación"
#~ msgid "Draft" #~ msgid "Draft"
#~ msgstr "Borrador" #~ msgstr "Borrador"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr ""
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "השם המוצג" msgstr "השם המוצג"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "מזהה" msgstr "מזהה"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "עודכן לאחרונה על ידי"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "עודכן לאחרונה על" msgstr "עודכן לאחרונה על"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "שם"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "תאריך שינוי אחרון"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "אבטחה" #~ msgstr "אבטחה"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Prikaži naziv" msgstr "Prikaži naziv"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Zadnju izmjenu izvršio/la"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnja izmjena" msgstr "Zadnja izmjena"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -435,7 +428,6 @@ msgstr "Naziv"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr "odabir"
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnja izmjena"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Postavi na nacrt" #~ msgstr "Postavi na nacrt"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Naziv" msgstr "Naziv"
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Zadnji ažurirao"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnje ažurirano" msgstr "Zadnje ažurirano"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -436,7 +429,6 @@ msgstr "Naziv"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,3 +824,6 @@ msgstr ""
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnje modificirano"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Név megjelenítése" msgstr "Név megjelenítése"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Utoljára frissítve, által"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Utoljára frissítve " msgstr "Utoljára frissítve "
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modell, minta" msgstr "Modell, minta"
@ -434,7 +427,6 @@ msgstr "Név"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Utolsó frissítés dátuma"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Beállítás tervezetnek" #~ msgstr "Beállítás tervezetnek"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nama Tampilan" msgstr "Nama Tampilan"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Diperbaharui oleh"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Diperbaharui pada" msgstr "Diperbaharui pada"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Nama"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Terakhir Dimodifikasi pada"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Keamanan" #~ msgstr "Keamanan"

View file

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2024-11-25 11:06+0000\n" "PO-Revision-Date: 2024-12-05 11:06+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n" "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n" "Language: it\n"
@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "%(model_name)s Accesso %(full_name)s" msgstr "%(model_name)s Accesso %(full_name)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (copia)" msgstr "%s (copia)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Accesso %s" msgstr "Accesso %s"
@ -98,8 +95,8 @@ msgid ""
"overwriting the parent menu on which the menu related to the SQL report will " "overwriting the parent menu on which the menu related to the SQL report will "
"be created." "be created."
msgstr "" msgstr ""
"Assegnando un valore a questo campo prima di creare manualmente la UI, si " "Assegnano un valore a questo campo prima di creare manualmente la UI, si sta "
"sta sovrascrivendo il menu padre nel quale il menu relativo al resoconto SQL " "sovrascrivendo il menu padre nel quale il menu relativo al resoconto SQL "
"verrà creato." "verrà creato."
#. module: bi_sql_editor #. module: bi_sql_editor
@ -137,12 +134,9 @@ msgstr "Colonna"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
"Testo separato da virgole. Valori possibili: \"graph\", \"pivot\", \"tree\" " "Testo separato da virgole. Valori possibili: \"graph\", \"pivot\" or \"list\""
"o \"form\""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
@ -214,14 +208,14 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Definire qui le restrizioni di accesso ai dati.\n" "Definire qui le restrizioni di accesso ai dati.\n"
" Fare attenzione ad usare nomi campi con prefisso 'x_'. Verrà creata una 'ir." " Fare attenzione ad usare nomi campi con prefisso 'x_'. Verrà creata una "
"rule' gobale. Una tipi ca regola multi azienda è per esempio\n" "'ir.rule' gobale. Una tipi ca regola multi azienda è per esempio\n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -236,6 +230,7 @@ msgstr "Cancella UI"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nome visualizzato" msgstr "Nome visualizzato"
@ -333,6 +328,7 @@ msgstr "Ha un messaggio"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -346,10 +342,18 @@ msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna." msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna."
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
"Se compilato, la query verrà eseguita su un database esterno, configurato "
"nel file di configurazione principale di Odoo. "
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -396,12 +400,6 @@ msgstr ""
"Cancellerà la vista realizzata e tutte le precedenti mappature realizzate " "Cancellerà la vista realizzata e tutte le precedenti mappature realizzate "
"con le colonne" "con le colonne"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -414,11 +412,6 @@ msgstr "Ultimo aggiornamento di"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultimo aggiornamento il" msgstr "Ultimo aggiornamento il"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr "Allegato principale"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -451,6 +444,7 @@ msgstr "Minimo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modello" msgstr "Modello"
@ -468,7 +462,6 @@ msgstr "Nome"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -511,16 +504,16 @@ msgstr "Azione Odoo"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Cron Odoo" msgstr "Cron Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr "Vista maschera Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Vista grafico Odoo" msgstr "Vista grafico Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr "Vista elenco Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -529,7 +522,7 @@ msgstr "Menu Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
msgid "Odoo Model" msgid "Odoo Model"
msgstr "Modello Odoo" msgstr "Modulo Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id
@ -546,17 +539,11 @@ msgstr "Regola Odoo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Vista ricerca Odoo" msgstr "Vista ricerca Odoo"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Vista elenco Odoo"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported" msgstr "Sono supportate solo viste graph, pivot or list"
msgstr "Sono supportate solo le viste graph, pivot, tree o form"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -581,7 +568,6 @@ msgstr "Menu Odoo padre"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "Impostare il modello related nei sequenti campi %s" msgstr "Impostare il modello related nei sequenti campi %s"
@ -603,7 +589,6 @@ msgstr "Aggiorna vista realizzata"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Aggiorna vista realizzata %s" msgstr "Aggiorna vista realizzata %s"
@ -620,7 +605,6 @@ msgstr "Definizione regola"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -716,20 +700,15 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
"Suffisso della vista SQL. Il nome completo SQL verrà calcolato con prefisso " "Suffisso della vista SQL. Il nome completo SQL verrà calcolato con prefisso "
"'x_bi_sql_view_'. La sintassi deve essere la seguente: https://www." "'x_bi_sql_view_'. La sintassi deve essere la seguente: https://"
"postgresql.org/docs/current/static/sql-syntax-lexical.html#IDENTIFICATORI-" "www.postgresql.org/docs/current/static/sql-syntax-"
"SINTASSI-SQL" "lexical.html#IDENTIFICATORI-SINTASSI-SQL"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum" msgid "Sum"
msgstr "Somma" msgstr "Somma"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr "Dettagli tecnici"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -784,7 +763,12 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Instances" msgid "UI Instances"
msgstr "Istanze UI" msgstr "Istanza UI"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr "Parametri UI"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
@ -805,6 +789,16 @@ msgstr ""
"Aggiorna accesso modello. Richiesto se si cambiano gli elenchi gruppi dopo " "Aggiorna accesso modello. Richiesto se si cambiano gli elenchi gruppi dopo "
"aver creato il modello" "aver creato il modello"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr "Usa database esterno"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Interfaccia utente"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -820,20 +814,28 @@ msgstr "Visualizza ordine"
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Viste, azione e manu creati" msgstr "Viste, azione e manu creati"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr "Messaggi sito web"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr "Cronologia comunicazioni sito web"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "Si possono non creare indici per le viste non realizzate" msgstr "Si possono non creare indici per le viste non realizzate"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Si possono scollegare solo le viste in bozza. Se si vogliono cancellare, " "Si possono scollegare solo le viste in bozza. Se si vogliono cancellare, "
@ -885,11 +887,8 @@ msgstr "selection"
msgid "sequence" msgid "sequence"
msgstr "sequence" msgstr "sequence"
#~ msgid "UI Parameters" #~ msgid "SMS Delivery error"
#~ msgstr "Parametri UI" #~ msgstr "Errore consegna SMS"
#~ msgid "User Interface"
#~ msgstr "Interfaccia utente"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
@ -897,10 +896,24 @@ msgstr "sequence"
#~ "Testo separato da virgole. Valori possibili: \"graph\", \"pivot\" o " #~ "Testo separato da virgole. Valori possibili: \"graph\", \"pivot\" o "
#~ "\"tree\"" #~ "\"tree\""
#~ msgid "Odoo Tree View"
#~ msgstr "Vista elenco Odoo"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Solo le viste grafico, pivot ed elenco sono supportate" #~ msgstr "Solo le viste grafico, pivot ed elenco sono supportate"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Si possono scollegare solo le viste in bozza. Se si vogliono cancellare, "
#~ "impostarle prima a bozza."
#~ msgid "Last Modified on"
#~ msgstr "Ultima modifica il"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Imposta a bozza" #~ msgstr "Imposta a bozza"

View file

@ -9,86 +9,82 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2024-01-17 11:33+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: \"Ivy Liu (QRTL)\" <liuhehe@quartile.co>\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n" "Language: ja\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.17\n"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "%(model_name)s アクセス %(full_name)s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (コピー)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "アクセス %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
msgid "Action Context" msgid "Action Context"
msgstr "アクションコンテキスト" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "Action Needed" msgid "Action Needed"
msgstr "対応必要" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Action Settings" msgid "Action Settings"
msgstr "アクション設定" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
msgid "Allowed Groups" msgid "Allowed Groups"
msgstr "許可グループ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
msgid "Allowed Users" msgid "Allowed Users"
msgstr "許可ユーザ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
msgid "Attachment Count" msgid "Attachment Count"
msgstr "添付ファイル数" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
msgid "Available" msgid "Available"
msgstr "利用可能" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average" msgid "Average"
msgstr "平均" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
msgstr "BI SQL View" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field #: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "BI SQL Viewフィールド" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__parent_menu_id
@ -104,16 +100,12 @@ msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the " "By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator" "behaviour, choose an alternate Group Operator"
msgstr "" msgstr ""
"デフォルトでは、Odooはグループ化する際に値を合計します。挙動を変更したい場合"
"は、別のグループ演算子を選択してください"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
"Check this box if you want to create a 'group by' option in the search view" "Check this box if you want to create a 'group by' option in the search view"
msgstr "" msgstr ""
"検索ビューに 「グループ化」 オプションを作成したい場合はこのボックスをチェッ"
"クしてください"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
@ -121,31 +113,26 @@ msgid ""
"Check this box if you want to create an index on that field. This is " "Check this box if you want to create an index on that field. This is "
"recommended for searchable and groupable fields, to reduce duration" "recommended for searchable and groupable fields, to reduce duration"
msgstr "" msgstr ""
"フィールドにインデックスを作成したい場合はこのボックスをチェックしてくださ"
"い。検索可能やグループ化対象のフィールドには処理効率化の為、インデックス設定"
"を推奨します"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
msgid "Column" msgid "Column"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context" msgid "Computed Action Context"
msgstr "アクションコンテキスト算出" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Computed Context" msgid "Computed Context"
msgstr "コンテキスト算出" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
@ -153,18 +140,16 @@ msgid ""
"Context value that will be inserted for this field in all the views. " "Context value that will be inserted for this field in all the views. "
"Important note : please write a context with single quote." "Important note : please write a context with single quote."
msgstr "" msgstr ""
"全てのビューでこのフィールドに挿入されるコンテキスト値。注意:コンテキストは"
"一重引用符で囲んで記述してください。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Create SQL Elements" msgid "Create SQL Elements"
msgstr "SQLエレメント作成" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Create UI" msgid "Create UI"
msgstr "UI作成" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
@ -181,25 +166,23 @@ msgstr "作成日"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "マテリアライズドビューを更新するクーロンタスク" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context" msgid "Custom Context"
msgstr "カスタムコンテキスト" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
msgstr "データベースサイズ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context
msgid "" msgid ""
"Define here a context that will be used by default, when creating the action." "Define here a context that will be used by default, when creating the action."
msgstr "" msgstr ""
"アクションを作成する際に、デフォルトで使用されるコンテキストをここで定義しま"
"す。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force
@ -207,70 +190,66 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"ここでデータへのアクセス制限を定義します。.\n"
" フィールド名の先頭に'x_'をつけてください。 グローバルな「ir.rule」が作成され"
"ます。典型的なマルチカンパニールールは以下の通り \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
"False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete SQL Elements" msgid "Delete SQL Elements"
msgstr "SQLエレメント削除" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Delete UI" msgid "Delete UI"
msgstr "UI削除" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "表示名" msgstr "表示名"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
msgid "Extra Rule Definition" msgid "Extra Rule Definition"
msgstr "追加ルール定義" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Extras Information" msgid "Extras Information"
msgstr "追加情報" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
msgid "Field Context" msgid "Field Context"
msgstr "フィールドコンテキスト" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
msgid "Field Description" msgid "Field Description"
msgstr "フィールド説明" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
msgid "Field Type" msgid "Field Type"
msgstr "フィールドタイプ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields #: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields" msgid "Fields"
msgstr "フィールド" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
msgid "Followers" msgid "Followers"
msgstr "フォロワー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
msgid "Followers (Partners)" msgid "Followers (Partners)"
msgstr "フォロワー(パートナー)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
@ -278,8 +257,6 @@ msgid ""
"For 'Many2one' Odoo field.\n" "For 'Many2one' Odoo field.\n"
" Comodel of the field." " Comodel of the field."
msgstr "" msgstr ""
"Odooフィールド'Many2one' について、\n"
"フィールドのモデル。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection
@ -288,96 +265,98 @@ msgid ""
" List of options, specified as a Python expression defining a list of (key, " " List of options, specified as a Python expression defining a list of (key, "
"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" "label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]"
msgstr "" msgstr ""
"Odoo フィールド'Selection' について、\n"
"オプションのリストは、(key, label) のペアのリストを定義する Python 式として指"
"定されます。例:[('blue','Blue'), ('yellow','Yellow')]"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name
msgid "Full Qualified Name of the transient model that will be created." msgid "Full Qualified Name of the transient model that will be created."
msgstr "作成される過渡モデルの完全修飾名。" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name
msgid "Full name of the SQL view" msgid "Full name of the SQL view"
msgstr "SQLビューフルネーム" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
msgid "Graph Type" msgid "Graph Type"
msgstr "グラフタイプ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator" msgid "Group Operator"
msgstr "グループ演算子" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
msgstr "グループ変更" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
msgid "Has Message" msgid "Has Message"
msgstr "メッセージあり" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
msgid "If checked, new messages require your attention." msgid "If checked, new messages require your attention."
msgstr "チェックが入っている場合、新着メッセージに注意が必要です。" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "チェックが入っている場合、一部のメッセージに送信エラーが発生します。" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
msgstr "" msgstr ""
"ビューの状態が「モデル有効」又は「UI有効」の場合はフィールドを削除できませ"
"ん。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
msgstr "インデックス名" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
msgid "Invisible" msgid "Invisible"
msgstr "インビジブル" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
msgid "Is Follower" msgid "Is Follower"
msgstr "フォロワー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "Is Group by" msgid "Is Group by"
msgstr "グループ化" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
msgid "Is Index" msgid "Is Index"
msgstr "インデックス" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized
msgid "Is Materialized View" msgid "Is Materialized View"
msgstr "マテリアライズドビュー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -385,13 +364,6 @@ msgid ""
"It will delete the materialized view, and all the previous mapping realized " "It will delete the materialized view, and all the previous mapping realized "
"with the columns" "with the columns"
msgstr "" msgstr ""
"マテリアライズドビューとカラムで実装されていたマッピングが全て削除されます"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "最終更新日"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
@ -405,50 +377,46 @@ msgstr "最終更新者"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "最終更新日" msgstr "最終更新日"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr "メイン添付"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
msgstr "マテリアライズドテキスト" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum" msgid "Maximum"
msgstr "最大値" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
msgid "Message Delivery error" msgid "Message Delivery error"
msgstr "送信エラーメッセージ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
msgid "Messages" msgid "Messages"
msgstr "メッセージ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum" msgid "Minimum"
msgstr "最小値" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "モデル" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
msgid "Model Name" msgid "Model Name"
msgstr "モデル名" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
@ -459,110 +427,101 @@ msgstr "名称"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
msgstr "" msgstr ""
"カラムが見つかりませんでした。\n"
"カラム名の先頭には 'x_' を付ける必要があります。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
msgid "Note" msgid "Note"
msgstr "ノート" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of Actions" msgid "Number of Actions"
msgstr "アクション数" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of errors" msgid "Number of errors"
msgstr "エラー数" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
msgid "Number of messages requiring action" msgid "Number of messages requiring action"
msgstr "対応必要メッセージ数" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
msgid "Number of messages with delivery error" msgid "Number of messages with delivery error"
msgstr "送信エラーメッセージ数" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
msgid "Odoo Action" msgid "Odoo Action"
msgstr "Odooアクション" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Odooクーロン"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Odooグラフビュー" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
msgstr "Odooメニュー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
msgid "Odoo Model" msgid "Odoo Model"
msgstr "Odooモデル" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id
msgid "Odoo Pivot View" msgid "Odoo Pivot View"
msgstr "Odooピボットビュー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
msgid "Odoo Rule" msgid "Odoo Rule"
msgstr "Odooルール" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Odoo検索ビュー" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Odooツリービュー"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Open View" msgid "Open View"
msgstr "ビューを開く" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
msgid "Optional (hidden)" msgid "Optional (hidden)"
msgstr "オプション (非表示)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
msgid "Optional (shown)" msgid "Optional (shown)"
msgstr "オプション (表示)" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
@ -572,64 +531,58 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "以下のフィールドに関連モデルを設定してください %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
msgid "Query" msgid "Query"
msgstr "クエリ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Refresh" msgid "Refresh"
msgstr "リフレッシュ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Refresh Materialized View" msgid "Refresh Materialized View"
msgstr "マテリアライズドビューをリフレッシュ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "マテリアライズドビューをリフレッシュ %s" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
msgid "Row" msgid "Row"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Rule Definition" msgid "Rule Definition"
msgstr "ルール定義" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
msgstr "" msgstr ""
"%(materialized_text)s ビュー %(view_name)s を作成中に SQLエラーが発生しまし"
"た : \n"
"%(error)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "SQL Fields" msgid "SQL Fields"
msgstr "SQLフィールド" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor #: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
msgid "SQL Reports" msgid "SQL Reports"
msgstr "SQLレポート" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query
@ -640,53 +593,48 @@ msgid ""
" * Do not use 'SELECT *' or 'SELECT table.*';\n" " * Do not use 'SELECT *' or 'SELECT table.*';\n"
" * prefix the name of the selectable columns by 'x_';" " * prefix the name of the selectable columns by 'x_';"
msgstr "" msgstr ""
"ビューとして挿入されるSQLリクエストについて、以下の点に注意してください\n"
" * 選択された全てのフィールドに名前を設定してください。SQL関数(like "
"EXTRACT, ...)を使用する場合は特にそうです;\n"
" * 'SELECT *' や 'SELECT table.*' は使用しないでください*';\n"
" * 選択可能なカラム名の前に 'x_' を付けてください;"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type
msgid "SQL Type" msgid "SQL Type"
msgstr "SQLタイプ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type
msgid "SQL Type in the database" msgid "SQL Type in the database"
msgstr "データベース内のSQLタイプ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id
msgid "SQL View" msgid "SQL View"
msgstr "SQLビュー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid
msgid "SQL View and Model Created" msgid "SQL View and Model Created"
msgstr "SQLビューとモデル作成" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view #: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view #: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view
msgid "SQL Views" msgid "SQL Views"
msgstr "SQLビュー" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
msgid "Selection Options" msgid "Selection Options"
msgstr "選択オプション" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
msgid "Size of the materialized view and its indexes" msgid "Size of the materialized view and its indexes"
msgstr "マテリアライズドビューとインデックスサイズ" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state
msgid "State" msgid "State"
msgstr "状態" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
@ -696,9 +644,6 @@ msgid ""
" * 'Draft': Not tested\n" " * 'Draft': Not tested\n"
" * 'SQL Valid': SQL Request has been checked and is valid" " * 'SQL Valid': SQL Request has been checked and is valid"
msgstr "" msgstr ""
"リクエスト状態:\n"
" * 'ドラフト': 未テスト\n"
" * 'SQL有効': SQLリクエストはチェックされ有効です"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name
@ -707,24 +652,16 @@ msgid ""
"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" "'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/"
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
"SQLビューのサフィックス。SQLフルネームが算出'x_bi_sql_view_' が前置されます。"
"構文は以下の通り: https://www.postgresql.org/docs/current/static/sql-syntax-"
"lexical.html#SQL-SYNTAX-IDENTIFIERS"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum" msgid "Sum"
msgstr "SUM"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
msgstr "技術名称" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
@ -732,18 +669,16 @@ msgid ""
"Technical fields, used in modules that depends on this one to know if groups " "Technical fields, used in modules that depends on this one to know if groups "
"has changed, and that according access should be updated." "has changed, and that according access should be updated."
msgstr "" msgstr ""
"このモジュールに依存する他のモジュールがグループの変更を確認し、それに応じて"
"アクセス権を更新する為に使用するテクニカルフィールドです。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
msgid "This will be used as the name of the Odoo field, displayed for users" msgid "This will be used as the name of the Odoo field, displayed for users"
msgstr "これはユーザに表示されるOdooフィールド名として使用されます" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "This will create Odoo View, Action and Menu" msgid "This will create Odoo View, Action and Menu"
msgstr "これはOdooのビュー、アクション及びメニューを作成します" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -751,13 +686,11 @@ msgid ""
"This will try to create an SQL View, based on the SQL request and the " "This will try to create an SQL View, based on the SQL request and the "
"according Transient Model and fields, based on settings" "according Transient Model and fields, based on settings"
msgstr "" msgstr ""
"SQLリクエストと対応する過渡モデル及びフィールドに基づき、SQLビューを作成しよ"
"うとします"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
msgid "Tree Visibility" msgid "Tree Visibility"
msgstr "ツリービューの可視性" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype
@ -766,24 +699,26 @@ msgid ""
"create a new field. If empty, this field will not be displayed neither " "create a new field. If empty, this field will not be displayed neither "
"available for search or group by function" "available for search or group by function"
msgstr "" msgstr ""
"Odooフィールドのタイプを作成します。新しいフィールドを作成しない場合は空のま"
"まにしてください。空の場合、このフィールドは表示されず、検索やグループ化もで"
"きません"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
msgstr "無効" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Update Model Access" msgid "Update Model Access"
msgstr "モデルアクセスを更新" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -791,101 +726,105 @@ msgid ""
"Update Model Access. Required if you changed groups list after having " "Update Model Access. Required if you changed groups list after having "
"created the model" "created the model"
msgstr "" msgstr ""
"モデルアクセスを更新してください。モデルを作成した後でグループリストを変更し"
"た場合には必要です" #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
msgstr "ビュー名前" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
msgid "View Order" msgid "View Order"
msgstr "ビュー順序" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "ビュー、アクションとメニュー作成" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
"マテリアライズドビュー以外のビューにインデックスを作成することはできません"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"ドラフトビューのみ削除可能。削除したい場合は、まずドラフトに設定してくださ"
"い。"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
msgid "boolean" msgid "boolean"
msgstr "ブーリアン型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
msgid "char" msgid "char"
msgstr "Char型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
msgid "date" msgid "date"
msgstr "Date型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
msgid "datetime" msgid "datetime"
msgstr "Datetime型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
msgid "float" msgid "float"
msgstr "float型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
msgid "integer" msgid "integer"
msgstr "整数型" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
msgid "many2one" msgid "many2one"
msgstr "多対一" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
msgid "selection" msgid "selection"
msgstr "抽出" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
msgid "sequence" msgid "sequence"
msgstr "シーケンス" msgstr ""
#~ msgid "User Interface" #~ msgid "Last Modified on"
#~ msgstr "ユーザインターフェース" #~ msgstr "最終更新日"
#~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
#~ msgstr ""
#~ "カンマ区切りテキスト。使用可能値 :「グラフ」、「ピボット」又は「ツリー」"
#, python-format
#~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "グラフ、ピボット又はツリービューのみサポートされています"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "ドラフトに設定" #~ msgstr "ドラフトに設定"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "표시 이름" msgstr "표시 이름"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "최근 수정"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "최근 갱신한 사람"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "최근 갱신 날짜" msgstr "최근 갱신 날짜"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "이름"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "최근 수정"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "보안" #~ msgstr "보안"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Vaizduojamas pavadinimas" msgstr "Vaizduojamas pavadinimas"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Paskutinį kartą atnaujino"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta" msgstr "Paskutinį kartą atnaujinta"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Pavadinimas"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Paskutinį kartą keista"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Nustatyti kaip juodraštį" #~ msgstr "Nustatyti kaip juodraštį"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" "Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/"
"teams/23907/lt_LT/)\n" "23907/lt_LT/)\n"
"Language: lt_LT\n" "Language: lt_LT\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Paskutinį kartą atnaujino"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta" msgstr "Paskutinį kartą atnaujinta"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -436,7 +429,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Pēdējo reizi atjaunoja"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Pēdējās izmaiņas" msgstr "Pēdējās izmaiņas"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nosaukums"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Прикажи име" msgstr "Прикажи име"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Последно ажурирање од"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последно ажурирање на" msgstr "Последно ажурирање на"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Име"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Последна промена на"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Подеси на нацрт" #~ msgstr "Подеси на нацрт"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Дэлгэцийн Нэр" msgstr "Дэлгэцийн Нэр"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Сүүлийн засвар хийсэн"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо" msgstr "Сүүлийн засвар хийсэн огноо"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Нэр"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Сүүлийн засвар хийсэн огноо"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Ноороглох" #~ msgstr "Ноороглох"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Visnings navn" msgstr "Visnings navn"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Sist oppdatert av"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sist oppdatert" msgstr "Sist oppdatert"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Navn"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sist oppdatert "
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Sett som utkast" #~ msgstr "Sett som utkast"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Vis navn" msgstr "Vis navn"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Sist oppdatert av"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sist oppdatert den" msgstr "Sist oppdatert den"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sist endret den"
#~ msgid "Draft" #~ msgid "Draft"
#~ msgstr "Drøfting" #~ msgstr "Drøfting"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Te tonen naam" msgstr "Te tonen naam"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Laatst bijgewerkt door"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -434,7 +427,6 @@ msgstr "Naam"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Laatst bijgewerkt op"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Zet op concept" #~ msgstr "Zet op concept"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Schermnaam" msgstr "Schermnaam"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Laatst bijgewerkt door"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Naam:"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Laatst Aangepast op"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Terugzetten naar Concept" #~ msgstr "Terugzetten naar Concept"

View file

@ -12,8 +12,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-31 11:56+0000\n" "POT-Creation-Date: 2017-08-31 11:56+0000\n"
"PO-Revision-Date: 2017-08-31 11:56+0000\n" "PO-Revision-Date: 2017-08-31 11:56+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n" "Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/"
"teams/23907/nl_NL/)\n" "23907/nl_NL/)\n"
"Language: nl_NL\n" "Language: nl_NL\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Weergavenaam" msgstr "Weergavenaam"
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Laatst bijgewerkt door"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -436,7 +429,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,3 +824,6 @@ msgstr ""
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Laatst gewijzigd op"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Wyświetlana nazwa " msgstr "Wyświetlana nazwa "
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Ostatnio modyfikowane przez"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ostatnia zmiana" msgstr "Ostatnia zmiana"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -436,7 +429,6 @@ msgstr "Nazwa"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -824,6 +825,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ostatnio modyfikowano"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Uprawnienia" #~ msgstr "Uprawnienia"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nome" msgstr "Nome"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Modificado a última vez por"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Atualizado pela última vez por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Atualizado pela última vez em" msgstr "Atualizado pela última vez em"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -434,7 +427,6 @@ msgstr "Nome"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Modificado a última vez por"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Definir como rascunho" #~ msgstr "Definir como rascunho"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
"teams/23907/pt_BR/)\n" "23907/pt_BR/)\n"
"Language: pt_BR\n" "Language: pt_BR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nome para Mostrar" msgstr "Nome para Mostrar"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Identificação" msgstr "Identificação"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Última atualização por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última atualização em" msgstr "Última atualização em"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -435,7 +428,6 @@ msgstr "Nome"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última atualização em"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Definir como Provisório" #~ msgstr "Definir como Provisório"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/"
"teams/23907/pt_PT/)\n" "23907/pt_PT/)\n"
"Language: pt_PT\n" "Language: pt_PT\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nome a Apresentar" msgstr "Nome a Apresentar"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Atualizado pela última vez por"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Atualizado pela última vez em" msgstr "Atualizado pela última vez em"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
@ -435,7 +428,6 @@ msgstr "Nome"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última Modificação Em"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Definir como rascunho" #~ msgstr "Definir como rascunho"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nume Afişat" msgstr "Nume Afişat"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Ultima actualizare făcută de"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualizare la" msgstr "Ultima actualizare la"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Nume"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima actualizare în"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Seteaza ca Ciorna" #~ msgstr "Seteaza ca Ciorna"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Последний раз обновлено"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последний раз обновлено" msgstr "Последний раз обновлено"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Модель" msgstr "Модель"
@ -436,7 +429,6 @@ msgstr "Название"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Zobraziť meno" msgstr "Zobraziť meno"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Naposledy upravoval"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Naposledy upravované" msgstr "Naposledy upravované"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Meno"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,5 +823,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Posledná modifikácia"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Bezpečnosť" #~ msgstr "Bezpečnosť"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (kopija)" msgstr "%s (kopija)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Dostop %s" msgstr "Dostop %s"
@ -132,9 +129,7 @@ msgstr "Stolpec"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -203,15 +198,15 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Tu določite omejitve dostopa do podatkov.\n" "Tu določite omejitve dostopa do podatkov.\n"
" Pazite, da uporabite predpono 'x_' v nazivu polja. Globalno 'ir.rule' " " Pazite, da uporabite predpono 'x_' v nazivu polja. Globalno 'ir.rule' "
"pravilo bo ustvarjeno. Tipično pravilo za strukturirano podjetje je " "pravilo bo ustvarjeno. Tipično pravilo za strukturirano podjetje je "
"naprimer \n" "naprimer \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -226,6 +221,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Prikazani naziv" msgstr "Prikazani naziv"
@ -321,6 +317,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -334,10 +331,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -380,12 +383,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -398,11 +395,6 @@ msgstr "Zadnji posodobil"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnjič posodobljeno" msgstr "Zadnjič posodobljeno"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
#, fuzzy #, fuzzy
@ -436,6 +428,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -453,7 +446,6 @@ msgstr "Naziv"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -496,16 +488,16 @@ msgstr "Odoo dejanje"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Odoo Cron" msgstr "Odoo Cron"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Odoo grafični prikaz" msgstr "Odoo grafični prikaz"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -531,16 +523,10 @@ msgstr "Odoo pravilo"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Odoo iskalni prikaz" msgstr "Odoo iskalni prikaz"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -566,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -588,7 +573,6 @@ msgstr "Osveži materializirani prikaz"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Osveži materializirani prikaz %s" msgstr "Osveži materializirani prikaz %s"
@ -605,7 +589,6 @@ msgstr "Definicija pravila"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -704,11 +687,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -758,6 +736,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -778,6 +761,16 @@ msgstr ""
"Posodobi dostope modela. Potrebno, če ste spremenili seznam skupin po " "Posodobi dostope modela. Potrebno, če ste spremenili seznam skupin po "
"nastanku modela" "nastanku modela"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Uporabniški vmesnik"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -793,20 +786,29 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, fuzzy, python-format #, fuzzy
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz" msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -856,8 +858,8 @@ msgstr "selection"
msgid "sequence" msgid "sequence"
msgstr "sequence" msgstr "sequence"
#~ msgid "User Interface" #~ msgid "Last Modified on"
#~ msgstr "Uporabniški vmesnik" #~ msgstr "Zadnjič spremenjeno"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Nastavi kot osnutek" #~ msgstr "Nastavi kot osnutek"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr ""
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Ime"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Ime za prikaz" msgstr "Ime za prikaz"
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "Zadnja izmjena"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnja izmjena" msgstr "Zadnja izmjena"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -436,7 +429,6 @@ msgstr "Ime:"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -824,6 +825,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnja izmjena"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Bezbednost" #~ msgstr "Bezbednost"

View file

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2024-06-27 09:55+0000\n" "PO-Revision-Date: 2024-06-11 16:35+0000\n"
"Last-Translator: jakobkrabbe <jakob@syscare.se>\n" "Last-Translator: jakobkrabbe <jakob@syscare.se>\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n" "Language: sv\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "%(model_name)s Access %(full_name)s" msgstr "%(model_name)s Access %(full_name)s"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "%s (kopia)" msgstr "%s (kopia)"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "Åtkomst %s" msgstr "Åtkomst %s"
@ -98,8 +95,8 @@ msgid ""
"be created." "be created."
msgstr "" msgstr ""
"Genom att tilldela ett värde till det här fältet innan du skapar " "Genom att tilldela ett värde till det här fältet innan du skapar "
"användargränssnittet manuellt skriver du över den överordnade meny där menyn " "användargränssnittet manuellt, skriver du över den överordnade menyn där "
"som är relaterad till SQL-rapporten kommer att skapas." "menyn som är relaterad till SQL-rapporten kommer att skapas."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
@ -115,8 +112,8 @@ msgstr ""
msgid "" msgid ""
"Check this box if you want to create a 'group by' option in the search view" "Check this box if you want to create a 'group by' option in the search view"
msgstr "" msgstr ""
"Markera den här rutan om du vill skapa ett alternativ för \"gruppera efter\" " "Markera den här rutan om du vill skapa ett alternativ för 'gruppera efter' i "
"i sökvyn" "sökvyn"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
@ -134,9 +131,7 @@ msgstr "Kolumn"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -183,7 +178,7 @@ msgstr "Skapad den"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "Cron Task som kommer att uppdatera den materialiserade vyn" msgstr "Cron uppgift som kommer att uppdatera den materialiserade vyn"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -209,14 +204,14 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
"Definiera här åtkomstbegränsning till data.\n" "Definiera här åtkomstbegränsning till data.\n"
" Var noga med att använda fältnamn med prefixet \"x_\". En global \"ir." " Var noga med att använda fältnamn med prefixet \"x_\". En global "
"rule\" kommer att skapas. En typisk regel för flera företag är t.ex.\n" "\"ir.rule\" kommer att skapas. En typisk regel för flera företag är t.ex.\n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -231,6 +226,7 @@ msgstr "Ta bort användargränssnitt"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Visa namn" msgstr "Visa namn"
@ -272,7 +268,7 @@ msgstr "Följare"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
msgid "Followers (Partners)" msgid "Followers (Partners)"
msgstr "Följare (Partners)" msgstr "Följare (Kontakter)"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
@ -281,7 +277,7 @@ msgid ""
" Comodel of the field." " Comodel of the field."
msgstr "" msgstr ""
"För Odoo-fältet \"Many2one\".\n" "För Odoo-fältet \"Many2one\".\n"
" Komodell av fältet." " Ko-modell av fältet."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection
@ -293,7 +289,7 @@ msgstr ""
"För Odoo-fältet \"Selection\".\n" "För Odoo-fältet \"Selection\".\n"
" Lista med alternativ, specificerad som ett Python-uttryck som definierar en " " Lista med alternativ, specificerad som ett Python-uttryck som definierar en "
"lista med (nyckel, etikett)-par. Till exempel: [('blue','Blue'), ('yellow', " "lista med (nyckel, etikett)-par. Till exempel: [('blue','Blue'), ('yellow', "
"'Yellow')]" "'Yellow')]: [('blue','Blue'), ('yellow','Yellow')]"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name
@ -329,6 +325,7 @@ msgstr "Har meddelande"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -342,10 +339,16 @@ msgstr "Om den är markerad kräver nya meddelanden din uppmärksamhet."
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "Om kryssrutan är markerad får vissa meddelanden ett leveransfel." msgstr "Om kryssrutan är markerad får vissa meddelanden ett leveransfel."
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -392,12 +395,6 @@ msgstr ""
"Den materialiserade vyn och all tidigare mappning som realiserats med " "Den materialiserade vyn och all tidigare mappning som realiserats med "
"kolumnerna raderas" "kolumnerna raderas"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -410,11 +407,6 @@ msgstr "Senast uppdaterad av"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Senast uppdaterad" msgstr "Senast uppdaterad"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr "Huvudfäste"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -447,6 +439,7 @@ msgstr "Minimum"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
@ -464,7 +457,6 @@ msgstr "Namn"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -507,16 +499,16 @@ msgstr "Odoo-åtgärd"
msgid "Odoo Cron" msgid "Odoo Cron"
msgstr "Odoo Cron" msgstr "Odoo Cron"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id
msgid "Odoo Form View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Graph View" msgid "Odoo Graph View"
msgstr "Odoo Graph View" msgstr "Odoo Graph View"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo List View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
msgid "Odoo Menu" msgid "Odoo Menu"
@ -542,16 +534,10 @@ msgstr "Odoo Regel"
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "Odoo Sök vy" msgstr "Odoo Sök vy"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr "Odoo trädvy"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -572,12 +558,11 @@ msgstr "Valfritt (visas)"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
msgid "Parent Odoo Menu" msgid "Parent Odoo Menu"
msgstr "Förälder Odoo Meny" msgstr "Överliggande Odoomeny"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "Vänligen ange relaterade modeller på följande fält %s" msgstr "Vänligen ange relaterade modeller på följande fält %s"
@ -599,7 +584,6 @@ msgstr "Uppdatera materialiserad vy"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "Uppdatera materialiserad vy %s" msgstr "Uppdatera materialiserad vy %s"
@ -616,7 +600,6 @@ msgstr "Definition av regel"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -720,11 +703,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "Summa" msgstr "Summa"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -780,6 +758,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "UI-instanser" msgstr "UI-instanser"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr "UI-parameters"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -799,10 +782,20 @@ msgstr ""
"Uppdatera modellåtkomst. Krävs om du har ändrat grupplistan efter att du har " "Uppdatera modellåtkomst. Krävs om du har ändrat grupplistan efter att du har "
"skapat modellen" "skapat modellen"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr "Användargränssnitt"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
msgstr "Visa namn" msgstr "Visningsnamn"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
@ -814,24 +807,30 @@ msgstr "Visa beställning"
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "Vyer, åtgärder och menyer skapade" msgstr "Vyer, åtgärder och menyer skapade"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr "Webbplatsmeddelanden"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr "Webbplatsens kommunikationshistorik"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "Du kan inte skapa index på icke-materialiserade vyer" msgstr "Du kan inte skapa index på icke-materialiserade vyer"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
"Du kan bara ta bort länkar till utkastvyer. Om du vill ta bort dem måste du "
"först ange att de ska vara utkast."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
@ -879,21 +878,32 @@ msgstr "urval"
msgid "sequence" msgid "sequence"
msgstr "sekvens" msgstr "sekvens"
#~ msgid "UI Parameters" #~ msgid "SMS Delivery error"
#~ msgstr "Parametrar för användargränssnitt" #~ msgstr "Fel vid leverans av SMS"
#~ msgid "User Interface"
#~ msgstr "Användargränssnitt"
#~ msgid "" #~ msgid ""
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" #~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
#~ msgstr "" #~ msgstr ""
#~ "Kommaseparerad text. Möjliga värden: \"graf\", \"pivot\" eller \"träd\"" #~ "Kommaseparerad text. Möjliga värden: \"graf\", \"pivot\" eller \"träd\""
#~ msgid "Odoo Tree View"
#~ msgstr "Odoo trädvy"
#, python-format #, python-format
#~ msgid "Only graph, pivot or tree views are supported" #~ msgid "Only graph, pivot or tree views are supported"
#~ msgstr "Endast graf-, pivot- eller trädvyer stöds" #~ msgstr "Endast graf-, pivot- eller trädvyer stöds"
#, python-format
#~ msgid ""
#~ "You can only unlink draft views.If you want to delete them, first set "
#~ "them to draft."
#~ msgstr ""
#~ "Du kan bara ta bort länkar till utkastvyer. Om du vill ta bort dem måste "
#~ "du först ange att de ska vara utkast."
#~ msgid "Last Modified on"
#~ msgstr "Senast redigerad"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Sätt till preliminär" #~ msgstr "Sätt till preliminär"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง" msgstr "ชื่อที่ใช้แสดง"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "รหัส" msgstr "รหัส"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "อัพเดทครั้งสุดท้ายโดย"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ" msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "ชื่อ"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "กำหนดให้เป็นแบบร่าง" #~ msgstr "กำหนดให้เป็นแบบร่าง"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Görünen İsim" msgstr "Görünen İsim"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Son güncelleyen"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Son güncelleme" msgstr "Son güncelleme"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
@ -435,7 +428,6 @@ msgstr "Adı"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Son değişiklik"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "Taslak Olarak Ayarlayın" #~ msgstr "Taslak Olarak Ayarlayın"

View file

@ -23,21 +23,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -126,9 +123,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -197,8 +192,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -214,6 +209,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Görünen ad" msgstr "Görünen ad"
@ -305,6 +301,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Kimlik" msgstr "Kimlik"
@ -318,10 +315,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -364,12 +367,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -382,11 +379,6 @@ msgstr "En son güncelleyen "
msgid "Last Updated on" msgid "Last Updated on"
msgstr "En son güncelleme tarihi" msgstr "En son güncelleme tarihi"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -419,6 +411,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "Tip" msgstr "Tip"
@ -436,7 +429,6 @@ msgstr "Ad"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -478,13 +470,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -512,16 +504,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -547,7 +533,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -569,7 +554,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -586,7 +570,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -677,11 +660,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -729,6 +707,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -746,6 +729,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -761,20 +754,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -824,6 +825,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "En son güncelleme tarihi"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Güvenlik" #~ msgstr "Güvenlik"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Назва для відображення" msgstr "Назва для відображення"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Востаннє оновив"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Останнє оновлення" msgstr "Останнє оновлення"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Name"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,5 +824,8 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Остання модифікація"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Безпека" #~ msgstr "Безпека"

View file

@ -21,21 +21,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -124,9 +121,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -195,8 +190,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -212,6 +207,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Tên hiển thị" msgstr "Tên hiển thị"
@ -303,6 +299,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -316,10 +313,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -362,12 +365,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -380,11 +377,6 @@ msgstr "Last Updated by"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào" msgstr "Cập nhật lần cuối vào"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -417,6 +409,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -434,7 +427,6 @@ msgstr "Tên"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -476,13 +468,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -510,16 +502,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -545,7 +531,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -567,7 +552,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -584,7 +568,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -675,11 +658,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -727,6 +705,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -744,6 +727,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -759,20 +752,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -822,6 +823,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sửa lần cuối vào"
#~ msgid "Security" #~ msgid "Security"
#~ msgstr "Bảo mật" #~ msgstr "Bảo mật"

View file

@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2017-08-12 02:51+0000\n" "POT-Creation-Date: 2017-08-12 02:51+0000\n"
"PO-Revision-Date: 2017-08-12 02:51+0000\n" "PO-Revision-Date: 2017-08-12 02:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/"
"teams/23907/vi_VN/)\n" "23907/vi_VN/)\n"
"Language: vi_VN\n" "Language: vi_VN\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "Cập nhật lần cuối bởi"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào" msgstr "Cập nhật lần cuối vào"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "Tên"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "显示名称" msgstr "显示名称"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "最后更新者"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "上次更新日期" msgstr "上次更新日期"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "模型" msgstr "模型"
@ -435,7 +428,6 @@ msgstr "名称"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "最后修改时间"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "设为草稿" #~ msgstr "设为草稿"

View file

@ -22,21 +22,18 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%(model_name)s Access %(full_name)s" msgid "%(model_name)s Access %(full_name)s"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "%s (Copy)" msgid "%s (Copy)"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Access %s" msgid "Access %s"
msgstr "" msgstr ""
@ -125,9 +122,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order
msgid "" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
"Comma-separated text. Possible values: \"graph\", \"pivot\", \"tree\" or "
"\"form\""
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -196,8 +191,8 @@ msgid ""
"Define here access restriction to data.\n" "Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"False)]." "('x_company_id','=',False)]."
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -213,6 +208,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "顯示名稱" msgstr "顯示名稱"
@ -304,6 +300,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "編號" msgstr "編號"
@ -317,10 +314,16 @@ msgstr ""
msgid "If checked, some messages have a delivery error." msgid "If checked, some messages have a delivery error."
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "" msgid ""
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " "Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
"Valid'." "Valid'."
@ -363,12 +366,6 @@ msgid ""
"with the columns" "with the columns"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
msgid "Last Modified on"
msgstr "最後修改:"
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid
@ -381,11 +378,6 @@ msgstr "最後更新:"
msgid "Last Updated on" msgid "Last Updated on"
msgstr "最後更新於" msgstr "最後更新於"
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
msgid "Materialized Text" msgid "Materialized Text"
@ -418,6 +410,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Model" msgid "Model"
msgstr "" msgstr ""
@ -435,7 +428,6 @@ msgstr "名稱"
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"No Column was found.\n" "No Column was found.\n"
"Columns name should be prefixed by 'x_'." "Columns name should be prefixed by 'x_'."
@ -477,13 +469,13 @@ msgid "Odoo Cron"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__form_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
msgid "Odoo Form View" msgid "Odoo Graph View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Graph View" msgid "Odoo List View"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -511,16 +503,10 @@ msgstr ""
msgid "Odoo Search View" msgid "Odoo Search View"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id
msgid "Odoo Tree View"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format msgid "Only graph, pivot or list views are supported"
msgid "Only graph, pivot, tree or form views are supported"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -546,7 +532,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Please set related models on the following fields %s" msgid "Please set related models on the following fields %s"
msgstr "" msgstr ""
@ -568,7 +553,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "Refresh Materialized View %s" msgid "Refresh Materialized View %s"
msgstr "" msgstr ""
@ -585,7 +569,6 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" "SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
" %(error)s" " %(error)s"
@ -676,11 +659,6 @@ msgstr ""
msgid "Sum" msgid "Sum"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Technical Details"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -728,6 +706,11 @@ msgstr ""
msgid "UI Instances" msgid "UI Instances"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "UI Parameters"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
msgid "Unavailable" msgid "Unavailable"
@ -745,6 +728,16 @@ msgid ""
"created the model" "created the model"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
msgid "Use External Database"
msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
msgid "View Name" msgid "View Name"
@ -760,20 +753,28 @@ msgstr ""
msgid "Views, Action and Menu Created" msgid "Views, Action and Menu Created"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website Messages"
msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__website_message_ids
msgid "Website communication history"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
#, python-format
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#. odoo-python #. odoo-python
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "" msgid ""
"You can only unlink draft views.If you want to delete them, first set them " "You can only unlink draft views. If you want to delete them, first set them "
"to draft." "to draft."
msgstr "" msgstr ""
@ -823,6 +824,9 @@ msgstr ""
msgid "sequence" msgid "sequence"
msgstr "" msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "最後修改:"
#~ msgid "Set to Draft" #~ msgid "Set to Draft"
#~ msgstr "設置為草稿" #~ msgstr "設置為草稿"

View file

@ -1,14 +0,0 @@
# Copyright (C) 2024 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openupgradelib import openupgrade
@openupgrade.migrate()
def migrate(env, version):
for view in env["bi.sql.view"].search([("state", "=", "ui_valid")]):
# create new Form view
view.form_view_id = env["ir.ui.view"].create(view._prepare_form_view()).id
# Update tree view, to add sum / avg option
view.tree_view_id.write(view._prepare_tree_view())

View file

@ -3,13 +3,14 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import logging import logging
from datetime import datetime, timedelta from datetime import datetime, timedelta, timezone
from psycopg2 import ProgrammingError from psycopg2 import ProgrammingError
from psycopg2.sql import SQL, Identifier
from odoo import SUPERUSER_ID, _, api, fields, models from odoo import api, fields, models
from odoo.exceptions import UserError, ValidationError from odoo.exceptions import UserError, ValidationError
from odoo.tools import sql, table_columns from odoo.tools import sql
from odoo.tools.safe_eval import safe_eval from odoo.tools.safe_eval import safe_eval
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)
@ -44,30 +45,25 @@ class BiSQLView(models.Model):
view_name = fields.Char( view_name = fields.Char(
compute="_compute_view_name", compute="_compute_view_name",
readonly=True,
store=True, store=True,
help="Full name of the SQL view", help="Full name of the SQL view",
) )
model_name = fields.Char( model_name = fields.Char(
compute="_compute_model_name", compute="_compute_model_name",
readonly=True,
store=True, store=True,
help="Full Qualified Name of the transient model that will" " be created.", help="Full Qualified Name of the transient model that will be created.",
) )
is_materialized = fields.Boolean( is_materialized = fields.Boolean(
string="Is Materialized View", string="Is Materialized View",
default=True, default=True,
readonly=True,
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
) )
materialized_text = fields.Char(compute="_compute_materialized_text", store=True) materialized_text = fields.Char(compute="_compute_materialized_text", store=True)
size = fields.Char( size = fields.Char(
string="Database Size", string="Database Size",
readonly=True,
help="Size of the materialized view and its indexes", help="Size of the materialized view and its indexes",
) )
@ -75,11 +71,8 @@ class BiSQLView(models.Model):
view_order = fields.Char( view_order = fields.Char(
required=True, required=True,
readonly=False, default="pivot,graph,list",
states={"ui_valid": [("readonly", True)]}, help='Comma-separated text. Possible values: "graph", "pivot" or "list"',
default="pivot,graph,tree",
help="Comma-separated text. Possible values:"
' "graph", "pivot", "tree" or "form"',
) )
query = fields.Text( query = fields.Text(
@ -88,34 +81,26 @@ class BiSQLView(models.Model):
" SQL function (like EXTRACT, ...);\n" " SQL function (like EXTRACT, ...);\n"
" * Do not use 'SELECT *' or 'SELECT table.*';\n" " * Do not use 'SELECT *' or 'SELECT table.*';\n"
" * prefix the name of the selectable columns by 'x_';", " * prefix the name of the selectable columns by 'x_';",
default="SELECT\n" " my_field as x_my_field\n" "FROM my_table", default="SELECT\n my_field as x_my_field\nFROM my_table",
) )
domain_force = fields.Text( domain_force = fields.Text(
string="Extra Rule Definition", string="Extra Rule Definition",
default="[]", default="[]",
readonly=True,
help="Define here access restriction to data.\n" help="Define here access restriction to data.\n"
" Take care to use field name prefixed by 'x_'." " Take care to use field name prefixed by 'x_'."
" A global 'ir.rule' will be created." " A global 'ir.rule' will be created."
" A typical Multi Company rule is for exemple \n" " A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id.id])," " ['|', ('x_company_id','child_of', [user.company_id.id]),"
"('x_company_id','=',False)].", "('x_company_id','=',False)].",
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
) )
computed_action_context = fields.Text(compute="_compute_computed_action_context") computed_action_context = fields.Text(compute="_compute_computed_action_context")
action_context = fields.Text( action_context = fields.Text(
default="{}", default="{}",
readonly=True,
help="Define here a context that will be used" help="Define here a context that will be used"
" by default, when creating the action.", " by default, when creating the action.",
states={
"draft": [("readonly", False)],
"sql_valid": [("readonly", False)],
"model_valid": [("readonly", False)],
},
) )
bi_sql_view_field_ids = fields.One2many( bi_sql_view_field_ids = fields.One2many(
@ -124,80 +109,53 @@ class BiSQLView(models.Model):
inverse_name="bi_sql_view_id", inverse_name="bi_sql_view_id",
) )
model_id = fields.Many2one( model_id = fields.Many2one(string="Odoo Model", comodel_name="ir.model")
string="Odoo Model", comodel_name="ir.model", readonly=True
)
# UI related fields # UI related fields
# 1. Editable fields, which can be set by the user (optional) before # 1. Editable fields, which can be set by the user (optional) before
# creating the UI elements # creating the UI elements
@api.model @api.model
def _default_parent_menu_id(self): def _default_parent_menu_id(self):
return self.env.ref("bi_sql_editor.menu_bi_sql_editor") return self.env.ref(
"bi_sql_editor.menu_bi_sql_editor", raise_if_not_found=False
)
parent_menu_id = fields.Many2one( parent_menu_id = fields.Many2one(
string="Parent Odoo Menu", string="Parent Odoo Menu",
comodel_name="ir.ui.menu", comodel_name="ir.ui.menu",
required=True, required=True,
readonly=True,
default=lambda self: self._default_parent_menu_id(), default=lambda self: self._default_parent_menu_id(),
states={
"draft": [("readonly", False)],
"sql_valid": [("readonly", False)],
"model_valid": [("readonly", False)],
},
help="By assigning a value to this field before manually creating the " help="By assigning a value to this field before manually creating the "
"UI, you're overwriting the parent menu on which the menu related to " "UI, you're overwriting the parent menu on which the menu related to "
"the SQL report will be created.", "the SQL report will be created.",
) )
# 2. Readonly fields, non editable by the user # 2. Readonly fields, non editable by the user
tree_view_id = fields.Many2one(string="Odoo List View", comodel_name="ir.ui.view")
form_view_id = fields.Many2one( graph_view_id = fields.Many2one(string="Odoo Graph View", comodel_name="ir.ui.view")
string="Odoo Form View", comodel_name="ir.ui.view", readonly=True
)
tree_view_id = fields.Many2one( pivot_view_id = fields.Many2one(string="Odoo Pivot View", comodel_name="ir.ui.view")
string="Odoo Tree View", comodel_name="ir.ui.view", readonly=True
)
graph_view_id = fields.Many2one(
string="Odoo Graph View", comodel_name="ir.ui.view", readonly=True
)
pivot_view_id = fields.Many2one(
string="Odoo Pivot View", comodel_name="ir.ui.view", readonly=True
)
search_view_id = fields.Many2one( search_view_id = fields.Many2one(
string="Odoo Search View", comodel_name="ir.ui.view", readonly=True string="Odoo Search View", comodel_name="ir.ui.view"
) )
action_id = fields.Many2one( action_id = fields.Many2one(
string="Odoo Action", comodel_name="ir.actions.act_window", readonly=True string="Odoo Action", comodel_name="ir.actions.act_window"
) )
menu_id = fields.Many2one( menu_id = fields.Many2one(string="Odoo Menu", comodel_name="ir.ui.menu")
string="Odoo Menu", comodel_name="ir.ui.menu", readonly=True
)
cron_id = fields.Many2one( cron_id = fields.Many2one(
string="Odoo Cron", string="Odoo Cron",
comodel_name="ir.cron", comodel_name="ir.cron",
readonly=True,
help="Cron Task that will refresh the materialized view", help="Cron Task that will refresh the materialized view",
ondelete="cascade", ondelete="cascade",
copy=False, copy=False,
) )
rule_id = fields.Many2one(string="Odoo Rule", comodel_name="ir.rule", readonly=True) rule_id = fields.Many2one(string="Odoo Rule", comodel_name="ir.rule")
group_ids = fields.Many2many(
comodel_name="res.groups",
readonly=True,
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
)
sequence = fields.Integer(string="sequence") sequence = fields.Integer(string="sequence")
@ -207,7 +165,7 @@ class BiSQLView(models.Model):
for rec in self.filtered(lambda x: not x.is_materialized): for rec in self.filtered(lambda x: not x.is_materialized):
if rec.bi_sql_view_field_ids.filtered(lambda x: x.is_index): if rec.bi_sql_view_field_ids.filtered(lambda x: x.is_index):
raise UserError( raise UserError(
_("You can not create indexes on non materialized views") self.env._("You can not create indexes on non materialized views")
) )
@api.constrains("view_order") @api.constrains("view_order")
@ -215,9 +173,9 @@ class BiSQLView(models.Model):
for rec in self: for rec in self:
if rec.view_order: if rec.view_order:
for vtype in rec.view_order.split(","): for vtype in rec.view_order.split(","):
if vtype not in ("graph", "pivot", "tree", "form"): if vtype not in ("graph", "pivot", "list"):
raise UserError( raise UserError(
_("Only graph, pivot, tree or form views are supported") self.env._("Only graph, pivot or list views are supported")
) )
# Compute Section # Compute Section
@ -261,18 +219,12 @@ class BiSQLView(models.Model):
@api.depends("technical_name") @api.depends("technical_name")
def _compute_view_name(self): def _compute_view_name(self):
for sql_view in self: for sql_view in self:
sql_view.view_name = "{}{}".format( sql_view.view_name = f"{sql_view._sql_prefix}{sql_view.technical_name}"
sql_view._sql_prefix,
sql_view.technical_name,
)
@api.depends("technical_name") @api.depends("technical_name")
def _compute_model_name(self): def _compute_model_name(self):
for sql_view in self: for sql_view in self:
sql_view.model_name = "{}{}".format( sql_view.model_name = f"{sql_view._model_prefix}{sql_view.technical_name}"
sql_view._model_prefix,
sql_view.technical_name,
)
# Overload Section # Overload Section
def write(self, vals): def write(self, vals):
@ -282,21 +234,21 @@ class BiSQLView(models.Model):
rec.menu_id.sequence = rec.sequence rec.menu_id.sequence = rec.sequence
return res return res
def unlink(self): @api.ondelete(at_uninstall=False)
def _check_unlink_constraints(self):
if any(view.state not in ("draft", "sql_valid") for view in self): if any(view.state not in ("draft", "sql_valid") for view in self):
raise UserError( raise UserError(
_( self.env._(
"You can only unlink draft views." "You can only unlink draft views. "
"If you want to delete them, first set them to draft." "If you want to delete them, first set them to draft."
) )
) )
return super().unlink()
def copy(self, default=None): def copy(self, default=None):
self.ensure_one() self.ensure_one()
default = dict(default or {}) default = dict(default or {})
if "name" not in default: if "name" not in default:
default["name"] = _("%s (Copy)") % self.name default["name"] = self.env._("%s (Copy)", self.name)
if "technical_name" not in default: if "technical_name" not in default:
default["technical_name"] = f"{self.technical_name}_copy" default["technical_name"] = f"{self.technical_name}_copy"
return super().copy(default=default) return super().copy(default=default)
@ -310,8 +262,10 @@ class BiSQLView(models.Model):
) )
if bad_fields: if bad_fields:
raise ValidationError( raise ValidationError(
_("Please set related models on the following fields %s") self.env._(
% ",".join(bad_fields.mapped("name")) "Please set related models on the following fields %s",
",".join(bad_fields.mapped("name")),
)
) )
# Create ORM and access # Create ORM and access
sql_view._create_model_and_fields() sql_view._create_model_and_fields()
@ -332,7 +286,6 @@ class BiSQLView(models.Model):
def button_reset_to_model_valid(self): def button_reset_to_model_valid(self):
views = self.filtered(lambda x: x.state == "ui_valid") views = self.filtered(lambda x: x.state == "ui_valid")
views.mapped("form_view_id").unlink()
views.mapped("tree_view_id").unlink() views.mapped("tree_view_id").unlink()
views.mapped("graph_view_id").unlink() views.mapped("graph_view_id").unlink()
views.mapped("pivot_view_id").unlink() views.mapped("pivot_view_id").unlink()
@ -360,7 +313,6 @@ class BiSQLView(models.Model):
return super().button_set_draft() return super().button_set_draft()
def button_create_ui(self): def button_create_ui(self):
self.form_view_id = self.env["ir.ui.view"].create(self._prepare_form_view()).id
self.tree_view_id = self.env["ir.ui.view"].create(self._prepare_tree_view()).id self.tree_view_id = self.env["ir.ui.view"].create(self._prepare_tree_view()).id
self.graph_view_id = ( self.graph_view_id = (
self.env["ir.ui.view"].create(self._prepare_graph_view()).id self.env["ir.ui.view"].create(self._prepare_graph_view()).id
@ -414,8 +366,11 @@ class BiSQLView(models.Model):
for group in self.group_ids: for group in self.group_ids:
res.append( res.append(
{ {
"name": _("%(model_name)s Access %(full_name)s") "name": self.env._(
% {"model_name": self.model_name, "full_name": group.full_name}, "%(model_name)s Access %(full_name)s",
model_name=self.model_name,
full_name=group.full_name,
),
"model_id": self.model_id.id, "model_id": self.model_id.id,
"group_id": group.id, "group_id": group.id,
"perm_read": True, "perm_read": True,
@ -429,14 +384,13 @@ class BiSQLView(models.Model):
def _prepare_cron(self): def _prepare_cron(self):
now = datetime.now() now = datetime.now()
return { return {
"name": _("Refresh Materialized View %s") % self.view_name, "name": self.env._("Refresh Materialized View %s", self.view_name),
"user_id": SUPERUSER_ID, "user_id": api.SUPERUSER_ID,
"model_id": self.env["ir.model"] "model_id": self.env["ir.model"]
.search([("model", "=", self._name)], limit=1) .search([("model", "=", self._name)], limit=1)
.id, .id,
"state": "code", "state": "code",
"code": "model._refresh_materialized_view_cron(%s)" % self.ids, "code": f"model._refresh_materialized_view_cron({self.ids})",
"numbercall": -1,
"interval_number": 1, "interval_number": 1,
"interval_type": "days", "interval_type": "days",
"nextcall": now + timedelta(days=1), "nextcall": now + timedelta(days=1),
@ -446,34 +400,21 @@ class BiSQLView(models.Model):
def _prepare_rule(self): def _prepare_rule(self):
self.ensure_one() self.ensure_one()
return { return {
"name": _("Access %s") % self.name, "name": self.env._("Access %s", self.name),
"model_id": self.model_id.id, "model_id": self.model_id.id,
"domain_force": self.domain_force, "domain_force": self.domain_force,
"global": True, "global": True,
} }
def _prepare_form_view(self):
self.ensure_one()
return {
"name": self.name,
"type": "form",
"model": self.model_id.model,
"arch": """<?xml version="1.0"?>"""
"""<form><sheet><group string="Data" col="4">{}"""
"""</group></sheet></form>""".format(
"".join([x._prepare_form_field() for x in self.bi_sql_view_field_ids])
),
}
def _prepare_tree_view(self): def _prepare_tree_view(self):
self.ensure_one() self.ensure_one()
return { return {
"name": self.name, "name": self.name,
"type": "tree", "type": "list",
"model": self.model_id.model, "model": self.model_id.model,
"arch": """<?xml version="1.0"?>""" "arch": """<?xml version="1.0"?>"""
"""<tree string="Analysis">{}""" """<list name="Analysis">{}"""
"""</tree>""".format( """</list>""".format(
"".join([x._prepare_tree_field() for x in self.bi_sql_view_field_ids]) "".join([x._prepare_tree_field() for x in self.bi_sql_view_field_ids])
), ),
} }
@ -512,7 +453,7 @@ class BiSQLView(models.Model):
"model": self.model_id.model, "model": self.model_id.model,
"arch": """<?xml version="1.0"?>""" "arch": """<?xml version="1.0"?>"""
"""<search string="Analysis">{}""" """<search string="Analysis">{}"""
"""<group expand="1" string="Group By">{}</group>""" """<group>{}</group>"""
"""</search>""".format( """</search>""".format(
"".join( "".join(
[x._prepare_search_field() for x in self.bi_sql_view_field_ids] [x._prepare_search_field() for x in self.bi_sql_view_field_ids]
@ -530,9 +471,7 @@ class BiSQLView(models.Model):
self.ensure_one() self.ensure_one()
view_mode = self.view_order view_mode = self.view_order
first_view = view_mode.split(",")[0] first_view = view_mode.split(",")[0]
if first_view == "form": if first_view == "list":
view_id = self.form_view_id.id
if first_view == "tree":
view_id = self.tree_view_id.id view_id = self.tree_view_id.id
elif first_view == "pivot": elif first_view == "pivot":
view_id = self.pivot_view_id.id view_id = self.pivot_view_id.id
@ -557,7 +496,7 @@ class BiSQLView(models.Model):
return self.name return self.name
return "{} ({})".format( return "{} ({})".format(
self.name, self.name,
datetime.utcnow().strftime("%m/%d/%Y %H:%M:%S UTC"), datetime.now(timezone.utc).strftime("%m/%d/%Y %H:%M:%S UTC"),
) )
def _prepare_menu(self): def _prepare_menu(self):
@ -565,20 +504,22 @@ class BiSQLView(models.Model):
return { return {
"name": self.name, "name": self.name,
"parent_id": self.parent_menu_id.id, "parent_id": self.parent_menu_id.id,
"action": "ir.actions.act_window,%s" % self.action_id.id, "action": f"ir.actions.act_window,{self.action_id.id}",
"sequence": self.sequence, "sequence": self.sequence,
} }
# Custom Section # Custom Section
def _log_execute(self, req): def _log_execute(self, req):
_logger.info("Executing SQL Request %s ..." % req) _logger.info(f"Executing SQL Request {req} ...")
self.env.cr.execute(req) self.env.cr.execute(req)
def _drop_view(self): def _drop_view(self):
for sql_view in self: for sql_view in self:
self._log_execute( self._log_execute(
"DROP %s VIEW IF EXISTS %s" SQL("DROP {materialized_text} VIEW IF EXISTS {view_name}").format(
% (sql_view.materialized_text, sql_view.view_name) materialized_text=SQL(sql_view.materialized_text),
view_name=Identifier(sql_view.view_name),
)
) )
sql_view.size = False sql_view.size = False
@ -590,15 +531,13 @@ class BiSQLView(models.Model):
sql_view._refresh_size() sql_view._refresh_size()
except ProgrammingError as e: except ProgrammingError as e:
raise UserError( raise UserError(
_( self.env._(
"SQL Error while creating %(materialized_text)s" "SQL Error while creating %(materialized_text)s"
" VIEW %(view_name)s :\n %(error)s" " VIEW %(view_name)s :\n %(error)s",
materialized_text=sql_view.materialized_text,
view_name=sql_view.view_name,
error=str(e),
) )
% {
"materialized_text": sql_view.materialized_text,
"view_name": sql_view.view_name,
"error": str(e),
}
) from e ) from e
def _create_index(self): def _create_index(self):
@ -607,12 +546,11 @@ class BiSQLView(models.Model):
lambda x: x.is_index is True lambda x: x.is_index is True
): ):
self._log_execute( self._log_execute(
"CREATE INDEX %(index_name)s ON %(view_name)s (%(field_name)s);" SQL("CREATE INDEX {index_name} ON {view_name} ({name});").format(
% { index_name=SQL(sql_field.index_name),
"index_name": sql_field.index_name, view_name=Identifier(sql_view.view_name),
"view_name": sql_view.view_name, name=Identifier(sql_field.name),
"field_name": sql_field.name, )
}
) )
def _create_model_and_fields(self): def _create_model_and_fields(self):
@ -621,8 +559,8 @@ class BiSQLView(models.Model):
sql_view.model_id = self.env["ir.model"].create(self._prepare_model()).id sql_view.model_id = self.env["ir.model"].create(self._prepare_model()).id
sql_view.rule_id = self.env["ir.rule"].create(self._prepare_rule()).id sql_view.rule_id = self.env["ir.rule"].create(self._prepare_rule()).id
# Drop table, created by the ORM # Drop table, created by the ORM
if sql.table_exists(self._cr, sql_view.view_name): if sql.table_exists(self.env.cr, sql_view.view_name):
req = "DROP TABLE %s" % sql_view.view_name req = SQL("DROP TABLE {}").format(Identifier(sql_view.view_name))
self._log_execute(req) self._log_execute(req)
def _create_model_access(self): def _create_model_access(self):
@ -645,28 +583,29 @@ class BiSQLView(models.Model):
def _hook_executed_request(self): def _hook_executed_request(self):
self.ensure_one() self.ensure_one()
req = ( req = SQL(
""" """
SELECT attnum, SELECT attnum,
attname AS column, attname AS column,
format_type(atttypid, atttypmod) AS type format_type(atttypid, atttypmod) AS type
FROM pg_attribute FROM pg_attribute
WHERE attrelid = '%s'::regclass WHERE attrelid = '{view_name}'::regclass
AND NOT attisdropped AND NOT attisdropped
AND attnum > 0 AND attnum > 0
ORDER BY attnum;""" ORDER BY attnum;"""
% self.view_name ).format(view_name=Identifier(self.view_name))
)
self._log_execute(req) self._log_execute(req)
return self.env.cr.fetchall() return self.env.cr.fetchall()
def _prepare_request_check_execution(self): def _prepare_request_check_execution(self):
self.ensure_one() self.ensure_one()
return "CREATE VIEW {} AS ({});".format(self.view_name, self.query) return SQL("CREATE VIEW {view_name} AS ({query});").format(
view_name=Identifier(self.view_name), query=SQL(self.query)
)
def _prepare_request_for_execution(self): def _prepare_request_for_execution(self):
self.ensure_one() self.ensure_one()
query = ( query = SQL(
""" """
SELECT SELECT
CAST(row_number() OVER () as integer) AS id, CAST(row_number() OVER () as integer) AS id,
@ -676,14 +615,13 @@ class BiSQLView(models.Model):
CAST(Null as integer) as write_uid, CAST(Null as integer) as write_uid,
my_query.* my_query.*
FROM FROM
(%s) as my_query ({}) as my_query
""" """
% self.query ).format(SQL(self.query))
) return SQL("CREATE {materialized_text} VIEW {view_name} AS ({query});").format(
return "CREATE {} VIEW {} AS ({});".format( materialized_text=SQL(self.materialized_text),
self.materialized_text, view_name=Identifier(self.view_name),
self.view_name, query=query,
query,
) )
def _check_execution(self): def _check_execution(self):
@ -698,7 +636,7 @@ class BiSQLView(models.Model):
field_ids = [] field_ids = []
for column in columns: for column in columns:
existing_field = self.bi_sql_view_field_ids.filtered( existing_field = self.bi_sql_view_field_ids.filtered(
lambda x: x.name == column[1] lambda x, c=column: x.name == c[1]
) )
if existing_field: if existing_field:
# Update existing field # Update existing field
@ -723,7 +661,9 @@ class BiSQLView(models.Model):
if not self.bi_sql_view_field_ids: if not self.bi_sql_view_field_ids:
raise UserError( raise UserError(
_("No Column was found.\n" "Columns name should be prefixed by 'x_'.") self.env._(
"No Column was found.\nColumns name should be prefixed by 'x_'."
)
) )
return columns return columns
@ -741,23 +681,20 @@ class BiSQLView(models.Model):
def _refresh_materialized_view(self): def _refresh_materialized_view(self):
for sql_view in self.filtered(lambda x: x.is_materialized): for sql_view in self.filtered(lambda x: x.is_materialized):
req = "REFRESH {} VIEW {}".format( req = f"REFRESH {sql_view.materialized_text} VIEW {sql_view.view_name}"
sql_view.materialized_text,
sql_view.view_name,
)
self._log_execute(req) self._log_execute(req)
sql_view._refresh_size() sql_view._refresh_size()
if sql_view.action_id: if sql_view.action_id:
# Alter name of the action, to display last refresh # Alter name of the action, to display last refresh
# datetime of the materialized view # datetime of the materialized view
sql_view.action_id.with_context( sql_view.action_id.with_context(
lang=self.env.user.lang lang=self.env.context.get("lang", self.env.user.lang)
).name = sql_view._prepare_action_name() ).name = sql_view._prepare_action_name()
def _refresh_size(self): def _refresh_size(self):
for sql_view in self: for sql_view in self:
req = "SELECT pg_size_pretty(pg_total_relation_size('%s'));" % ( req = SQL("SELECT pg_size_pretty(pg_total_relation_size('{}'));").format(
sql_view.view_name Identifier(sql_view.view_name)
) )
self._log_execute(req) self._log_execute(req)
sql_view.size = self.env.cr.fetchone()[0] sql_view.size = self.env.cr.fetchone()[0]
@ -767,7 +704,7 @@ class BiSQLView(models.Model):
# early on install / startup - particularly problematic during upgrade # early on install / startup - particularly problematic during upgrade
if model._name.startswith( if model._name.startswith(
self._model_prefix self._model_prefix
) and "group_operator" in table_columns(self.env.cr, "bi_sql_view_field"): ) and "group_operator" in sql.table_columns(self.env.cr, "bi_sql_view_field"):
# Use SQL instead of ORM, as ORM might not be fully initialised - # Use SQL instead of ORM, as ORM might not be fully initialised -
# we have no control over the order that fields are defined! # we have no control over the order that fields are defined!
# We are not concerned about user security rules. # We are not concerned about user security rules.
@ -794,7 +731,7 @@ WHERE
and sql_field[1] in ("integer", "float") and sql_field[1] in ("integer", "float")
and sql_field[2] and sql_field[2]
): ):
model._fields[sql_field[0]].group_operator = sql_field[2] model._fields[sql_field[0]].aggregator = sql_field[2]
def button_preview_sql_expression(self): def button_preview_sql_expression(self):
self.button_validate_sql_expression() self.button_validate_sql_expression()

View file

@ -4,7 +4,7 @@
import re import re
from odoo import _, api, fields, models from odoo import api, fields, models
from odoo.exceptions import UserError from odoo.exceptions import UserError
@ -76,34 +76,29 @@ class BiSQLViewField(models.Model):
help="Check this box if you want to create" help="Check this box if you want to create"
" an index on that field. This is recommended for searchable and" " an index on that field. This is recommended for searchable and"
" groupable fields, to reduce duration", " groupable fields, to reduce duration",
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
is_group_by = fields.Boolean( is_group_by = fields.Boolean(
string="Is Group by", string="Is Group by",
help="Check this box if you want to create" help="Check this box if you want to create"
" a 'group by' option in the search view", " a 'group by' option in the search view",
states={"ui_valid": [("readonly", True)]},
) )
index_name = fields.Char(compute="_compute_index_name") index_name = fields.Char(compute="_compute_index_name")
graph_type = fields.Selection( graph_type = fields.Selection(
selection=_GRAPH_TYPE_SELECTION, selection=_GRAPH_TYPE_SELECTION,
states={"ui_valid": [("readonly", True)]},
) )
tree_visibility = fields.Selection( tree_visibility = fields.Selection(
selection=_TREE_VISIBILITY_SELECTION, selection=_TREE_VISIBILITY_SELECTION,
default="available", default="available",
required=True, required=True,
states={"ui_valid": [("readonly", True)]},
) )
field_description = fields.Char( field_description = fields.Char(
help="This will be used as the name of the Odoo field, displayed for users", help="This will be used as the name of the Odoo field, displayed for users",
required=True, required=True,
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
ttype = fields.Selection( ttype = fields.Selection(
@ -113,7 +108,6 @@ class BiSQLViewField(models.Model):
" Odoo field that will be created. Keep empty if you don't want to" " Odoo field that will be created. Keep empty if you don't want to"
" create a new field. If empty, this field will not be displayed" " create a new field. If empty, this field will not be displayed"
" neither available for search or group by function", " neither available for search or group by function",
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
selection = fields.Text( selection = fields.Text(
@ -123,28 +117,24 @@ class BiSQLViewField(models.Model):
" List of options, specified as a Python expression defining a list of" " List of options, specified as a Python expression defining a list of"
" (key, label) pairs. For example:" " (key, label) pairs. For example:"
" [('blue','Blue'), ('yellow','Yellow')]", " [('blue','Blue'), ('yellow','Yellow')]",
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
many2one_model_id = fields.Many2one( many2one_model_id = fields.Many2one(
comodel_name="ir.model", comodel_name="ir.model",
string="Model", string="Model",
help="For 'Many2one' Odoo field.\n" " Comodel of the field.", help="For 'Many2one' Odoo field.\n Comodel of the field.",
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
group_operator = fields.Selection( group_operator = fields.Selection(
selection=_GROUP_OPERATOR_SELECTION, selection=_GROUP_OPERATOR_SELECTION,
help="By default, Odoo will sum the values when grouping. If you wish " help="By default, Odoo will sum the values when grouping. If you wish "
"to alter the behaviour, choose an alternate Group Operator", "to alter the behaviour, choose an alternate Group Operator",
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
) )
field_context = fields.Char( field_context = fields.Char(
default="{}", default="{}",
help="Context value that will be inserted for this field in all the views." help="Context value that will be inserted for this field in all the views."
" Important note : please write a context with single quote.", " Important note : please write a context with single quote.",
states={"ui_valid": [("readonly", True)]},
) )
# Constrains Section # Constrains Section
@ -153,15 +143,14 @@ class BiSQLViewField(models.Model):
for rec in self.filtered(lambda x: x.is_index): for rec in self.filtered(lambda x: x.is_index):
if not rec.bi_sql_view_id.is_materialized: if not rec.bi_sql_view_id.is_materialized:
raise UserError( raise UserError(
_("You can not create indexes on non materialized views") self.env._("You can not create indexes on non materialized views")
) )
# Compute Section # Compute Section
def _compute_index_name(self): def _compute_index_name(self):
for sql_field in self: for sql_field in self:
sql_field.index_name = "{}_{}".format( sql_field.index_name = (
sql_field.bi_sql_view_id.view_name, f"{sql_field.bi_sql_view_id.view_name}_{sql_field.name}"
sql_field.name,
) )
# Overload Section # Overload Section
@ -202,15 +191,15 @@ class BiSQLViewField(models.Model):
) )
return super().create(vals_list) return super().create(vals_list)
def unlink(self): @api.ondelete(at_uninstall=False)
def _check_unlink_constraints(self):
if self.filtered(lambda x: x.state in ("model_valid", "ui_valid")): if self.filtered(lambda x: x.state in ("model_valid", "ui_valid")):
raise UserError( raise UserError(
_( self.env._(
"Impossible to delete fields if the view" "Impossible to delete fields if the view"
" is in the state 'Model Valid' or 'UI Valid'." " is in the state 'Model Valid' or 'UI Valid'."
) )
) )
return super().unlink()
# Custom Section # Custom Section
@api.model @api.model
@ -219,8 +208,8 @@ class BiSQLViewField(models.Model):
field name. Sample : field name. Sample :
{'account_id': 'account.account'; 'product_id': 'product.product'} {'account_id': 'account.account'; 'product_id': 'product.product'}
""" """
relation_fields = self.env["ir.model.fields"].search( relation_fields = (
[("ttype", "=", "many2one")] self.env["ir.model.fields"].sudo().search([("ttype", "=", "many2one")])
) )
res = {} res = {}
keys_to_pop = [] keys_to_pop = []
@ -249,30 +238,20 @@ class BiSQLViewField(models.Model):
or False, or False,
} }
def _prepare_form_field(self):
self.ensure_one()
return f"""<field name="{self.name}" context="{self.field_context}"/>\n"""
def _prepare_tree_field(self): def _prepare_tree_field(self):
self.ensure_one() self.ensure_one()
if self.tree_visibility == "unavailable": if self.tree_visibility == "unavailable":
return "" return ""
visibility_text = "" visibility_text = ""
if self.tree_visibility == "invisible": if self.tree_visibility == "invisible":
visibility_text = 'invisible="1"' visibility_text = 'column_invisible="1"'
elif self.tree_visibility == "optional_hide": elif self.tree_visibility == "optional_hide":
visibility_text = 'optional="hide"' visibility_text = 'optional="hide"'
elif self.tree_visibility == "optional_show": elif self.tree_visibility == "optional_show":
visibility_text = 'optional="show"' visibility_text = 'optional="show"'
operator_text = ""
if self.group_operator == "sum":
operator_text = f'sum="{_("Total")}"'
elif self.group_operator == "avg":
operator_text = f'avg="{_("Average")}"'
return ( return (
f"""<field name="{self.name}" {visibility_text} {operator_text}""" f"""<field name="{self.name}" {visibility_text}"""
f""" context="{self.field_context}"/>\n""" f""" context="{self.field_context}"/>\n"""
) )
@ -295,26 +274,14 @@ class BiSQLViewField(models.Model):
def _prepare_search_field(self): def _prepare_search_field(self):
self.ensure_one() self.ensure_one()
return """<field name="{}" context="{}"/>\n""".format( return f"""<field name="{self.name}" context="{self.field_context}"/>\n"""
self.name,
self.field_context,
)
def _prepare_search_filter_field(self): def _prepare_search_filter_field(self):
self.ensure_one() self.ensure_one()
group_by_filter = "" if not self.is_group_by:
field_filter = "" return ""
if self.is_group_by: return (
group_by_filter = (
f"""<filter name="group_by_{self.name}" """ f"""<filter name="group_by_{self.name}" """
f"""string="{self.field_description}" """ f"""string="{self.field_description}" """
f"""context="{{'group_by':'{self.name}'}}"/>\n""" f"""context="{{'group_by':'{self.name}'}}"/>\n"""
) )
if self.ttype in ["date", "datetime"]:
field_filter = (
f"""<filter name="filter_{self.name}" """
f"""string="{self.field_description}" """
f"""date="{self.name}"/>\n"""
)
res = "%s%s" % (field_filter, group_by_filter)
return res

View file

@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"

View file

@ -0,0 +1,43 @@
- Go to Dashboard / Configuration / SQL Views
- tip your SQL request
![](../static/description/01_sql_request.png)
- Select the group(s) that could have access to the view
![](../static/description/02_security_access.png)
Optionnaly, you can add a domain.
A tipical domain in a multi company context is to write
`['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]`
to make reporting depending on the current companies of the user.
- Click on the button 'Validate SQL Expression'
- Once the sql request checked, the module analyses the column of the
view, and propose field mapping. For each field, you can decide to
create an index and set if it will be displayed on the pivot graph as
a column, a row or a measure.
![](../static/description/03_field_mapping.png)
- Click on the button 'Create SQL elements'. (this step could take a
while, if view is materialized)
- If it's a MATERIALIZED view:
> - a cron task is created to refresh the view. You can so define the
> frequency of the refresh.
> - the size of view (and the indexes is displayed)
![](../static/description/04_materialized_view_setting.png)
- Before applying the final step, you will need to add a specific Parent Menu to
use when creating the UI Menu for the report. By default, it will be set with
the `SQL Views` menu, which can be changed before creating the UI elements in
order to have the report accessible from a different place within Odoo.
- Finally, click on 'Create UI', to create new menu, action, graph view
and search view.

View file

@ -1,47 +0,0 @@
* Go to Dashboard / Configuration / SQL Views
* tip your SQL request
.. figure:: ../static/description/01_sql_request.png
:width: 800 px
* Select the group(s) that could have access to the view
.. figure:: ../static/description/02_security_access.png
:width: 800 px
Optionnaly, you can add a domain.
A tipical domain in a multi company context is to write
``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]``
to make reporting depending on the current companies of the user.
* Click on the button 'Validate SQL Expression'
* Once the sql request checked, the module analyses the column of the view,
and propose field mapping. For each field, you can decide to create an index
and set if it will be displayed on the pivot graph as a column, a row or a
measure.
.. figure:: ../static/description/03_field_mapping.png
:width: 800 px
* Click on the button 'Create SQL elements'. (this step could
take a while, if view is materialized)
* If it's a MATERIALIZED view:
* a cron task is created to refresh
the view. You can so define the frequency of the refresh.
* the size of view (and the indexes is displayed)
.. figure:: ../static/description/04_materialized_view_setting.png
:width: 800 px
* Before applying the final step, you will need to add a specific Parent Menu to
use when creating the UI Menu for the report. By default, it will be set with
the `SQL Views` menu, which can be changed before creating the UI elements in
order to have the report accessible from a different place within Odoo.
* Finally, click on 'Create UI', to create new menu, action, graph view and
search view.

View file

@ -0,0 +1,23 @@
- Sylvain LE GAL (<https://twitter.com/legalsylvain>)
- Richard deMeester, WilldooIT (<http://www.willdooit.com/>)
- David James, WilldooIT (<http://www.willdooit.com/>)
- Guillem Casassas <guillem.casassas@forgeflow.com>
- Thien Vo <thienvh@trobz.com>
- Baptiste P. <baptiste@newlogic.com>
- This module is highly inspired by the work of
- Onestein: (<http://www.onestein.nl/>) Module:
OCA/server-tools/bi_view_editor. Link:
<https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor>
- Anybox: (<https://anybox.fr/>) Module :
OCA/server-tools/materialized_sql_view link:
<https://github.com/OCA/server-tools/pull/110>
- GRAP, Groupement Régional Alimentaire de Proximité:
(<http://www.grap.coop/>) Module:
grap/odoo-addons-misc/pos_sale_reporting link:
<https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting>

View file

@ -1,15 +0,0 @@
* Sylvain LE GAL (https://twitter.com/legalsylvain)
* Richard deMeester, WilldooIT (http://www.willdooit.com/)
* David James, WilldooIT (http://www.willdooit.com/)
* Guillem Casassas <guillem.casassas@forgeflow.com>
* This module is highly inspired by the work of
* Onestein: (http://www.onestein.nl/)
Module: OCA/server-tools/bi_view_editor.
Link: https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor
* Anybox: (https://anybox.fr/)
Module : OCA/server-tools/materialized_sql_view
link: https://github.com/OCA/server-tools/pull/110
* GRAP, Groupement Régional Alimentaire de Proximité: (http://www.grap.coop/)
Module: grap/odoo-addons-misc/pos_sale_reporting
link: https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting

View file

@ -0,0 +1 @@
The migration of this module from 17.0 to 18.0 was financially supported by Camptocamp.

View file

@ -0,0 +1,42 @@
This module extends the functionality of reporting, to support creation
of extra custom reports. It allows user to write a custom SQL request.
(Generally, admin users)
Once written, a new model is generated, and user can map the selected
field with odoo fields. Then user ends the process, creating new menu,
action and graph view.
Technically, the module create SQL View (or materialized view, if option
is checked). Materialized view duplicates datas, but request are
fastest. If materialized view is enabled, this module will create a cron
task to refresh the data).
By default, users member of 'SQL Request / User' can see all the views.
You can specify extra groups that have the right to access to a specific
view.
## Warning
This module is intended for technician people in a company and for Odoo
integrators.
It requires the user to know SQL syntax and Odoo models.
If you don't have such skills, do not try to use this module specially
on a production environment.
## Use Cases
this module is interesting for the following use cases
- You want to realize technical SQL requests, that Odoo framework
doesn't allow (For exemple, UNION with many SELECT) A typical use case
is if you want to have Sale Orders and PoS Orders datas in a same
table
- You want to customize an Odoo report, removing some useless fields and
adding some custom ones. In that case, you can simply select the
fields of the original report (sale.report model for exemple), and add
your custom fields
- You have a lot of data, and classical SQL Views have very bad
performance. In that case, MATERIALIZED VIEW will be a good solution
to reduce display duration

View file

@ -1,41 +0,0 @@
This module extends the functionality of reporting, to support creation
of extra custom reports.
It allows user to write a custom SQL request. (Generally, admin users)
Once written, a new model is generated, and user can map the selected field
with odoo fields.
Then user ends the process, creating new menu, action and graph view.
Technically, the module create SQL View (or materialized view, if option is
checked). Materialized view duplicates datas, but request are fastest. If
materialized view is enabled, this module will create a cron task to refresh
the data).
By default, users member of 'SQL Request / User' can see all the views.
You can specify extra groups that have the right to access to a specific view.
Warning
-------
This module is intended for technician people in a company and for Odoo integrators.
It requires the user to know SQL syntax and Odoo models.
If you don't have such skills, do not try to use this module specially on a production
environment.
Use Cases
---------
this module is interesting for the following use cases
* You want to realize technical SQL requests, that Odoo framework doesn't allow
(For exemple, UNION with many SELECT) A typical use case is if you want to have
Sale Orders and PoS Orders datas in a same table
* You want to customize an Odoo report, removing some useless fields and adding
some custom ones. In that case, you can simply select the fields of the original
report (sale.report model for exemple), and add your custom fields
* You have a lot of data, and classical SQL Views have very bad performance.
In that case, MATERIALIZED VIEW will be a good solution to reduce display duration

View file

@ -0,0 +1,8 @@
To use this module, you need to:
1. Go to 'Dashboards \> SQL Reports'
2. Select the desired report
> ![usage-image1](../static/description/05_reporting_pivot.png)
- You can switch to 'Graph' or 'tree' views as any report.

View file

@ -1,10 +0,0 @@
To use this module, you need to:
#. Go to 'Dashboards > SQL Reports'
#. Select the desired report
.. figure:: ../static/description/05_reporting_pivot.png
:width: 800 px
* You can switch to 'Graph' or 'tree' views as any report.

View file

@ -4,3 +4,5 @@ access_bi_sql_view_manager,access_bi_sql_view_manager,model_bi_sql_view,sql_requ
,,,,,,, ,,,,,,,
access_bi_sql_view_field_all,access_bi_sql_view_field_all,model_bi_sql_view_field,,0,0,0,0 access_bi_sql_view_field_all,access_bi_sql_view_field_all,model_bi_sql_view_field,,0,0,0,0
access_bi_sql_view_field_manager,access_bi_sql_view_field_manager,model_bi_sql_view_field,sql_request_abstract.group_sql_request_manager,1,1,1,1 access_bi_sql_view_field_manager,access_bi_sql_view_field_manager,model_bi_sql_view_field,sql_request_abstract.group_sql_request_manager,1,1,1,1
access_ir_model_sql_request_manager,access_ir_model_sql_request_manager,base.model_ir_model,sql_request_abstract.group_sql_request_manager,1,0,0,0
access_ir_actions_act_window_sql_request_manager,access_ir_actions_act_window_sql_request_manager,base.model_ir_actions_act_window,sql_request_abstract.group_sql_request_manager,1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
4
5 access_bi_sql_view_field_all access_bi_sql_view_field_all model_bi_sql_view_field 0 0 0 0
6 access_bi_sql_view_field_manager access_bi_sql_view_field_manager model_bi_sql_view_field sql_request_abstract.group_sql_request_manager 1 1 1 1
7 access_ir_model_sql_request_manager access_ir_model_sql_request_manager base.model_ir_model sql_request_abstract.group_sql_request_manager 1 0 0 0
8 access_ir_actions_act_window_sql_request_manager access_ir_actions_act_window_sql_request_manager base.model_ir_actions_act_window sql_request_abstract.group_sql_request_manager 1 0 0 0

View file

@ -3,7 +3,7 @@
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" /> <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
<title>BI SQL Editor</title> <title>README.rst</title>
<style type="text/css"> <style type="text/css">
/* /*
@ -360,47 +360,57 @@ ul.auto-toc {
</style> </style>
</head> </head>
<body> <body>
<div class="document" id="bi-sql-editor"> <div class="document">
<h1 class="title">BI SQL Editor</h1>
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
</a>
<div class="section" id="bi-sql-editor">
<h1>BI SQL Editor</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !! !! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:1849ead08bc0511282f7e09107fa343bb9ea126755bcc3d05294d954aeca26a3 !! source digest: sha256:9a7186167db4d48168e2f8f904d2fd9e6ef20d25fcf521a350050d270feb036e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-bi_sql_editor"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p> <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-19-0/reporting-engine-19-0-bi_sql_editor"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&amp;target_branch=19.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module extends the functionality of reporting, to support creation <p>This module extends the functionality of reporting, to support creation
of extra custom reports. of extra custom reports. It allows user to write a custom SQL request.
It allows user to write a custom SQL request. (Generally, admin users)</p> (Generally, admin users)</p>
<p>Once written, a new model is generated, and user can map the selected field <p>Once written, a new model is generated, and user can map the selected
with odoo fields. field with odoo fields. Then user ends the process, creating new menu,
Then user ends the process, creating new menu, action and graph view.</p> action and graph view.</p>
<p>Technically, the module create SQL View (or materialized view, if option is <p>Technically, the module create SQL View (or materialized view, if option
checked). Materialized view duplicates datas, but request are fastest. If is checked). Materialized view duplicates datas, but request are
materialized view is enabled, this module will create a cron task to refresh fastest. If materialized view is enabled, this module will create a cron
the data).</p> task to refresh the data).</p>
<p>By default, users member of SQL Request / User can see all the views. <p>By default, users member of SQL Request / User can see all the views.
You can specify extra groups that have the right to access to a specific view.</p> You can specify extra groups that have the right to access to a specific
view.</p>
<div class="section" id="warning"> <div class="section" id="warning">
<h1>Warning</h1> <h2>Warning</h2>
<p>This module is intended for technician people in a company and for Odoo integrators.</p> <p>This module is intended for technician people in a company and for Odoo
integrators.</p>
<p>It requires the user to know SQL syntax and Odoo models.</p> <p>It requires the user to know SQL syntax and Odoo models.</p>
<p>If you dont have such skills, do not try to use this module specially on a production <p>If you dont have such skills, do not try to use this module specially
environment.</p> on a production environment.</p>
</div> </div>
<div class="section" id="use-cases"> <div class="section" id="use-cases">
<h1>Use Cases</h1> <h2>Use Cases</h2>
<p>this module is interesting for the following use cases</p> <p>this module is interesting for the following use cases</p>
<ul class="simple"> <ul class="simple">
<li>You want to realize technical SQL requests, that Odoo framework doesnt allow <li>You want to realize technical SQL requests, that Odoo framework
(For exemple, UNION with many SELECT) A typical use case is if you want to have doesnt allow (For exemple, UNION with many SELECT) A typical use case
Sale Orders and PoS Orders datas in a same table</li> is if you want to have Sale Orders and PoS Orders datas in a same
<li>You want to customize an Odoo report, removing some useless fields and adding table</li>
some custom ones. In that case, you can simply select the fields of the original <li>You want to customize an Odoo report, removing some useless fields and
report (sale.report model for exemple), and add your custom fields</li> adding some custom ones. In that case, you can simply select the
<li>You have a lot of data, and classical SQL Views have very bad performance. fields of the original report (sale.report model for exemple), and add
In that case, MATERIALIZED VIEW will be a good solution to reduce display duration</li> your custom fields</li>
<li>You have a lot of data, and classical SQL Views have very bad
performance. In that case, MATERIALIZED VIEW will be a good solution
to reduce display duration</li>
</ul> </ul>
<p><strong>Table of contents</strong></p> <p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents"> <div class="contents local topic" id="contents">
@ -408,28 +418,19 @@ In that case, MATERIALIZED VIEW will be a good solution to reduce display durati
<li><a class="reference internal" href="#configuration" id="toc-entry-1">Configuration</a></li> <li><a class="reference internal" href="#configuration" id="toc-entry-1">Configuration</a></li>
<li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li> <li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li> <li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul> <li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a></li>
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
</ul>
</li>
</ul> </ul>
</div> </div>
<div class="section" id="configuration"> <div class="section" id="configuration">
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2> <h3><a class="toc-backref" href="#toc-entry-1">Configuration</a></h3>
<ul> <ul>
<li><p class="first">Go to Dashboard / Configuration / SQL Views</p> <li><p class="first">Go to Dashboard / Configuration / SQL Views</p>
</li> </li>
<li><p class="first">tip your SQL request</p> <li><p class="first">tip your SQL request</p>
<div class="figure"> <p><img alt="image1" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/01_sql_request.png" /></p>
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png" style="width: 800px;" />
</div>
</li> </li>
<li><p class="first">Select the group(s) that could have access to the view</p> <li><p class="first">Select the group(s) that could have access to the view</p>
<div class="figure"> <p><img alt="image2" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/02_security_access.png" /></p>
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png" style="width: 800px;" />
</div>
</li> </li>
</ul> </ul>
<p>Optionnaly, you can add a domain.</p> <p>Optionnaly, you can add a domain.</p>
@ -439,98 +440,99 @@ to make reporting depending on the current companies of the user.</p>
<ul> <ul>
<li><p class="first">Click on the button Validate SQL Expression</p> <li><p class="first">Click on the button Validate SQL Expression</p>
</li> </li>
<li><p class="first">Once the sql request checked, the module analyses the column of the view, <li><p class="first">Once the sql request checked, the module analyses the column of the
and propose field mapping. For each field, you can decide to create an index view, and propose field mapping. For each field, you can decide to
and set if it will be displayed on the pivot graph as a column, a row or a create an index and set if it will be displayed on the pivot graph as
measure.</p> a column, a row or a measure.</p>
<div class="figure"> <p><img alt="image3" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/03_field_mapping.png" /></p>
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png" style="width: 800px;" />
</div>
</li> </li>
<li><p class="first">Click on the button Create SQL elements. (this step could <li><p class="first">Click on the button Create SQL elements. (this step could take a
take a while, if view is materialized)</p> while, if view is materialized)</p>
</li> </li>
<li><p class="first">If its a MATERIALIZED view:</p> <li><p class="first">If its a MATERIALIZED view:</p>
<blockquote> <blockquote>
<ul class="simple"> <ul class="simple">
<li>a cron task is created to refresh <li>a cron task is created to refresh the view. You can so define the
the view. You can so define the frequency of the refresh.</li> frequency of the refresh.</li>
<li>the size of view (and the indexes is displayed)</li> <li>the size of view (and the indexes is displayed)</li>
</ul> </ul>
</blockquote> </blockquote>
<div class="figure"> <p><img alt="image4" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/04_materialized_view_setting.png" /></p>
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png" style="width: 800px;" />
</div>
</li> </li>
<li><p class="first">Before applying the final step, you will need to add a specific Parent Menu to <li><p class="first">Before applying the final step, you will need to add a specific Parent
use when creating the UI Menu for the report. By default, it will be set with Menu to use when creating the UI Menu for the report. By default, it
the <cite>SQL Views</cite> menu, which can be changed before creating the UI elements in will be set with the <tt class="docutils literal">SQL Views</tt> menu, which can be changed before
order to have the report accessible from a different place within Odoo.</p> creating the UI elements in order to have the report accessible from a
different place within Odoo.</p>
</li> </li>
<li><p class="first">Finally, click on Create UI, to create new menu, action, graph view and <li><p class="first">Finally, click on Create UI, to create new menu, action, graph view
search view.</p> and search view.</p>
</li> </li>
</ul> </ul>
</div> </div>
<div class="section" id="usage"> <div class="section" id="usage">
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2> <h3><a class="toc-backref" href="#toc-entry-2">Usage</a></h3>
<p>To use this module, you need to:</p> <p>To use this module, you need to:</p>
<ol class="arabic simple"> <ol class="arabic simple">
<li>Go to Dashboards &gt; SQL Reports</li> <li>Go to Dashboards &gt; SQL Reports</li>
<li>Select the desired report</li> <li>Select the desired report</li>
</ol> </ol>
<!-- -->
<blockquote> <blockquote>
<div class="figure"> <img alt="usage-image1" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/05_reporting_pivot.png" /></blockquote>
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png" style="width: 800px;" />
</div>
</blockquote>
<ul class="simple"> <ul class="simple">
<li>You can switch to Graph or tree views as any report.</li> <li>You can switch to Graph or tree views as any report.</li>
</ul> </ul>
</div> </div>
<div class="section" id="bug-tracker"> <div class="section" id="bug-tracker">
<h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2> <h3><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h3>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/reporting-engine/issues">GitHub Issues</a>. <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/reporting-engine/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported. 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 If you spotted it first, help us to smash it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p> <a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p> <p>Do not contact contributors directly about support or help with technical issues.</p>
</div> </div>
<div class="section" id="credits"> <div class="section" id="credits">
<h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2> <h3><a class="toc-backref" href="#toc-entry-4">Credits</a></h3>
</div>
</div>
<div class="section" id="authors"> <div class="section" id="authors">
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3> <h2>Authors</h2>
<ul class="simple"> <ul class="simple">
<li>GRAP</li> <li>GRAP</li>
</ul> </ul>
</div> </div>
<div class="section" id="contributors"> <div class="section" id="contributors">
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3> <h2>Contributors</h2>
<ul class="simple"> <ul class="simple">
<li>Sylvain LE GAL (<a class="reference external" href="https://twitter.com/legalsylvain">https://twitter.com/legalsylvain</a>)</li> <li>Sylvain LE GAL (<a class="reference external" href="https://twitter.com/legalsylvain">https://twitter.com/legalsylvain</a>)</li>
<li>Richard deMeester, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li> <li>Richard deMeester, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li>
<li>David James, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li> <li>David James, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li>
<li>Guillem Casassas &lt;<a class="reference external" href="mailto:guillem.casassas&#64;forgeflow.com">guillem.casassas&#64;forgeflow.com</a>&gt;</li> <li>Guillem Casassas <a class="reference external" href="mailto:guillem.casassas&#64;forgeflow.com">guillem.casassas&#64;forgeflow.com</a></li>
<li><dl class="first docutils"> <li>Thien Vo <a class="reference external" href="mailto:thienvh&#64;trobz.com">thienvh&#64;trobz.com</a></li>
<dt>This module is highly inspired by the work of</dt> <li>Baptiste P. <a class="reference external" href="mailto:baptiste&#64;newlogic.com">baptiste&#64;newlogic.com</a></li>
<dd><ul class="first last"> <li>This module is highly inspired by the work of<ul>
<li>Onestein: (<a class="reference external" href="http://www.onestein.nl/">http://www.onestein.nl/</a>) <li>Onestein: (<a class="reference external" href="http://www.onestein.nl/">http://www.onestein.nl/</a>) Module:
Module: OCA/server-tools/bi_view_editor. OCA/server-tools/bi_view_editor. Link:
Link: <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor">https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor</a></li> <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor">https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor</a></li>
<li>Anybox: (<a class="reference external" href="https://anybox.fr/">https://anybox.fr/</a>) <li>Anybox: (<a class="reference external" href="https://anybox.fr/">https://anybox.fr/</a>) Module :
Module : OCA/server-tools/materialized_sql_view OCA/server-tools/materialized_sql_view link:
link: <a class="reference external" href="https://github.com/OCA/server-tools/pull/110">https://github.com/OCA/server-tools/pull/110</a></li> <a class="reference external" href="https://github.com/OCA/server-tools/pull/110">https://github.com/OCA/server-tools/pull/110</a></li>
<li>GRAP, Groupement Régional Alimentaire de Proximité: (<a class="reference external" href="http://www.grap.coop/">http://www.grap.coop/</a>) <li>GRAP, Groupement Régional Alimentaire de Proximité:
Module: grap/odoo-addons-misc/pos_sale_reporting (<a class="reference external" href="http://www.grap.coop/">http://www.grap.coop/</a>) Module:
link: <a class="reference external" href="https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting">https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting</a></li> grap/odoo-addons-misc/pos_sale_reporting link:
<a class="reference external" href="https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting">https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting</a></li>
</ul> </ul>
</dd>
</dl>
</li> </li>
</ul> </ul>
</div> </div>
<div class="section" id="other-credits">
<h2>Other credits</h2>
<p>The migration of this module from 17.0 to 18.0 was financially supported
by Camptocamp.</p>
</div>
<div class="section" id="maintainers"> <div class="section" id="maintainers">
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3> <h2>Maintainers</h2>
<p>This module is maintained by the OCA.</p> <p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"> <a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /> <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@ -540,11 +542,10 @@ mission is to support the collaborative development of Odoo features and
promote its widespread use.</p> promote its widespread use.</p>
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p> <p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a></p> <p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a></p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor">OCA/reporting-engine</a> project on GitHub.</p> <p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor">OCA/reporting-engine</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p> <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div> </div>
</div> </div>
</div> </div>
</div>
</body> </body>
</html> </html>

View file

@ -1,13 +1,14 @@
# Copyright 2017 Onestein (<http://www.onestein.eu>) # Copyright 2017 Onestein (<http://www.onestein.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import Command
from odoo.exceptions import AccessError, UserError, ValidationError from odoo.exceptions import AccessError, UserError, ValidationError
from odoo.tests import tagged from odoo.tests import new_test_user, tagged
from odoo.tests.common import SingleTransactionCase from odoo.tests.common import TransactionCase
@tagged("-at_install", "post_install") @tagged("-at_install", "post_install")
class TestBiSqlViewEditor(SingleTransactionCase): class TestBiSqlViewEditor(TransactionCase):
@classmethod @classmethod
def setUpClass(cls): def setUpClass(cls):
super().setUpClass() super().setUpClass()
@ -17,15 +18,35 @@ class TestBiSqlViewEditor(SingleTransactionCase):
"sql_request_abstract.group_sql_request_manager" "sql_request_abstract.group_sql_request_manager"
) )
cls.group_bi_no_access = cls.env.ref("base.group_user") cls.group_bi_no_access = cls.env.ref("base.group_user")
cls.demo_user = cls.env.ref("base.user_demo") cls.demo_user = new_test_user(
cls.view = cls.env.ref("bi_sql_editor.partner_sql_view") cls.env,
login="demo_bi_sql",
groups="base.group_user",
name="Demo User",
email="demo@example.com",
)
cls.view = cls.bi_sql_view.create(
{
"name": "Partners View",
"technical_name": "partners_view",
"is_materialized": True,
"query": """SELECT
name as x_name,
street as x_street,
company_id as x_company_id
FROM res_partner
ORDER BY name""",
}
)
@classmethod @classmethod
def _get_user(cls, access_level=False): def _get_user(cls, access_level=False):
if access_level == "manager": if access_level == "manager":
cls.demo_user.write({"groups_id": [(6, 0, cls.group_bi_manager.ids)]}) cls.demo_user.write({"group_ids": [Command.set(cls.group_bi_manager.ids)]})
else: else:
cls.demo_user.write({"groups_id": [(6, 0, cls.group_bi_no_access.ids)]}) cls.demo_user.write(
{"group_ids": [Command.set(cls.group_bi_no_access.ids)]}
)
return cls.demo_user return cls.demo_user
def test_process_view(self): def test_process_view(self):
@ -58,6 +79,7 @@ class TestBiSqlViewEditor(SingleTransactionCase):
copy_view.button_update_model_access() copy_view.button_update_model_access()
self.assertEqual(copy_view.has_group_changed, False) self.assertEqual(copy_view.has_group_changed, False)
# Check that cron works correctly # Check that cron works correctly
with self.enter_registry_test_mode():
copy_view.cron_id.method_direct_trigger() copy_view.cron_id.method_direct_trigger()
def test_copy(self): def test_copy(self):
@ -67,13 +89,15 @@ class TestBiSqlViewEditor(SingleTransactionCase):
def test_security(self): def test_security(self):
with self.assertRaises(AccessError): with self.assertRaises(AccessError):
self.bi_sql_view.with_user(self._get_user()).search( self.bi_sql_view.with_user(self._get_user()).search(
[("name", "=", self.view.name)] [("id", "=", self.view.id)]
) )
bi = self.bi_sql_view.with_user(self._get_user("manager")).search( bi = self.bi_sql_view.with_user(self._get_user("manager")).search(
[("name", "=", self.view.name)] [("id", "=", self.view.id)]
) )
self.assertEqual( self.assertEqual(
len(bi), 1, "Bi Manager should have access to bi %s" % self.view.name len(bi),
1,
f"BI Manager should have access to the specific record: {self.view.name}",
) )
def test_unlink(self): def test_unlink(self):
@ -90,6 +114,7 @@ class TestBiSqlViewEditor(SingleTransactionCase):
self.assertEqual(copy_view.state, "ui_valid") self.assertEqual(copy_view.state, "ui_valid")
with self.assertRaises(UserError): with self.assertRaises(UserError):
copy_view.unlink() copy_view.unlink()
copy_view.button_set_draft() copy_view.button_set_draft()
self.assertNotEqual( self.assertNotEqual(
copy_view.cron_id, copy_view.cron_id,

View file

@ -5,7 +5,6 @@ Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
--> -->
<odoo> <odoo>
<record id="view_bi_sql_view_tree" model="ir.ui.view"> <record id="view_bi_sql_view_tree" model="ir.ui.view">
<field name="model">bi.sql.view</field> <field name="model">bi.sql.view</field>
<field <field
@ -19,7 +18,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
</field> </field>
<field name="name" position="after"> <field name="name" position="after">
<field name="technical_name" /> <field name="technical_name" />
<field name="size" /> <field name="size" readonly="1" />
</field> </field>
</field> </field>
</record> </record>
@ -36,7 +35,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<button <button
name="button_reset_to_sql_valid" name="button_reset_to_sql_valid"
type="object" type="object"
states="model_valid" invisible="state != 'model_valid'"
string="Delete SQL Elements" string="Delete SQL Elements"
groups="sql_request_abstract.group_sql_request_manager" groups="sql_request_abstract.group_sql_request_manager"
confirm="It will delete the materialized view, and all the previous mapping realized with the columns" confirm="It will delete the materialized view, and all the previous mapping realized with the columns"
@ -44,14 +43,14 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<button <button
name="button_reset_to_model_valid" name="button_reset_to_model_valid"
type="object" type="object"
states="ui_valid" invisible="state != 'ui_valid'"
string="Delete UI" string="Delete UI"
groups="sql_request_abstract.group_sql_request_manager" groups="sql_request_abstract.group_sql_request_manager"
/> />
<button <button
name="button_create_sql_view_and_model" name="button_create_sql_view_and_model"
type="object" type="object"
states="sql_valid" invisible="state != 'sql_valid'"
string="Create SQL Elements" string="Create SQL Elements"
class="oe_highlight" class="oe_highlight"
help="This will try to create an SQL View, based on the SQL request and the according Transient Model and fields, based on settings" help="This will try to create an SQL View, based on the SQL request and the according Transient Model and fields, based on settings"
@ -61,13 +60,13 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
type="object" type="object"
string="Update Model Access" string="Update Model Access"
class="oe_highlight" class="oe_highlight"
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('has_group_changed', '=', False)]}" invisible="state in ('draft', 'sql_valid') or not has_group_changed"
help="Update Model Access. Required if you changed groups list after having created the model" help="Update Model Access. Required if you changed groups list after having created the model"
/> />
<button <button
name="button_create_ui" name="button_create_ui"
type="object" type="object"
states="model_valid" invisible="state != 'model_valid'"
string="Create UI" string="Create UI"
class="oe_highlight" class="oe_highlight"
help="This will create Odoo View, Action and Menu" help="This will create Odoo View, Action and Menu"
@ -76,7 +75,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
name="button_open_view" name="button_open_view"
type="object" type="object"
string="Open View" string="Open View"
states="ui_valid" invisible="state != 'ui_valid'"
class="oe_highlight" class="oe_highlight"
/> />
<button <button
@ -84,65 +83,85 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
type="object" type="object"
string="Refresh" string="Refresh"
help="Refresh Materialized View" help="Refresh Materialized View"
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}" invisible="state in ('draft', 'sql_valid') or not is_materialized"
/> />
</xpath> </xpath>
<group name="group_main_info" position="inside"> <group name="group_main_info" position="inside">
<group> <group>
<field name="technical_name" readonly="state != 'draft'" />
<field name="view_name" readonly="1" />
<field name="view_order" readonly="state == 'ui_valid'" />
<field <field
name="technical_name" name="is_materialized"
attrs="{'readonly': [('state', '!=', 'draft')]}" readonly="state not in ('draft', 'sql_valid')"
/> />
<field name="is_materialized" />
<field <field
name="size" name="size"
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}" invisible="state == 'draft' or not is_materialized"
readonly="1"
/>
<field
name="cron_id"
invisible="state in ('draft', 'sql_valid') or not is_materialized"
readonly="1"
/> />
</group>
<group>
<field name="view_order" />
<field name="parent_menu_id" />
</group> </group>
</group> </group>
<page name="page_sql" position="after"> <page name="page_sql" position="after">
<page <page string="SQL Fields" invisible="state == 'draft'">
string="SQL Fields"
attrs="{'invisible': [('state', '=', 'draft')]}"
>
<field name="bi_sql_view_field_ids" nolabel="1" colspan="4"> <field name="bi_sql_view_field_ids" nolabel="1" colspan="4">
<tree editable="bottom" create="false"> <list editable="bottom">
<field name="sequence" widget="handle" /> <field name="sequence" widget="handle" />
<field name="name" /> <field name="name" />
<field name="sql_type" /> <field name="sql_type" />
<field name="field_description" /> <field
<field name="ttype" /> name="field_description"
readonly="state in ('model_valid', 'ui_valid')"
/>
<field
name="ttype"
readonly="state in ('model_valid', 'ui_valid')"
/>
<field <field
name="many2one_model_id" name="many2one_model_id"
attrs="{ invisible="ttype != 'many2one'"
'invisible': [('ttype', '!=', 'many2one')], required="ttype == 'many2one'"
'required': [('ttype', '=', 'many2one')], readonly="state in ('model_valid', 'ui_valid')"
}"
/> />
<field <field
name="selection" name="selection"
attrs="{ invisible="ttype != 'selection'"
'invisible': [('ttype', '!=', 'selection')], required="ttype == 'selection'"
'required': [('ttype', '=', 'selection')], readonly="state in ('model_valid', 'ui_valid')"
}"
/> />
<field <field
name='group_operator' name='group_operator'
optional="hide" optional="hide"
attrs="{ invisible="ttype not in ('float', 'integer')"
'invisible': [('ttype', 'not in', ('float', 'integer'))]}" readonly="state in ('model_valid', 'ui_valid')"
/> />
<field name="is_index" optional="hide" /> <field
<field name="graph_type" /> name="is_index"
<field name="is_group_by" optional="hide" /> optional="hide"
<field name="tree_visibility" optional="hide" /> readonly="state in ('model_valid', 'ui_valid')"
<field name="field_context" optional="hide" /> />
<field name="state" invisible="1" /> <field name="graph_type" readonly="state == 'ui_valid'" />
</tree> <field
name="is_group_by"
optional="hide"
readonly="state == 'ui_valid'"
/>
<field
name="tree_visibility"
optional="hide"
readonly="state == 'ui_valid'"
/>
<field
name="field_context"
readonly="state == 'ui_valid'"
/>
<field name="state" column_invisible="1" />
</list>
</field> </field>
</page> </page>
</page> </page>
@ -154,6 +173,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
colspan="2" colspan="2"
widget="ace" widget="ace"
options="{'mode': 'python'}" options="{'mode': 'python'}"
readonly="state not in ('draft', 'sql_valid')"
/> />
</group> </group>
</page> </page>
@ -168,15 +188,12 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<page name="page_security" position="after"> <page name="page_security" position="after">
<page string="Action Settings"> <page string="Action Settings">
<group string="Computed Context"> <group string="Computed Context">
<field <field name="computed_action_context" nolabel="1" colspan="2" />
name="computed_action_context"
nolabel="1"
colspan="2"
/>
</group> </group>
<group string="Custom Context"> <group string="Custom Context">
<field <field
name="action_context" name="action_context"
readonly="state not in ('draft', 'sql_valid', 'model_valid')"
nolabel="1" nolabel="1"
colspan="2" colspan="2"
widget="ace" widget="ace"
@ -186,31 +203,39 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
</page> </page>
<page string="Extras Information"> <page string="Extras Information">
<group> <group>
<group string="Technical Details"> <group string="Model">
<field <field name="model_name" readonly="1" />
name="cron_id"
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}"
/>
<field name="view_name" />
<field name="model_name" />
<field <field
name="model_id" name="model_id"
attrs="{'invisible': [('state', '=', 'draft')]}" readonly="1"
invisible="state == 'draft'"
/>
</group>
<group string="User Interface">
<group string="UI Parameters">
<field
name="parent_menu_id"
readonly="state == 'ui_valid'"
/> />
</group> </group>
<group string="UI Instances"> <group string="UI Instances">
<field name="form_view_id" /> <field name="tree_view_id" readonly="1" />
<field name="tree_view_id" /> <field name="graph_view_id" readonly="1" />
<field name="graph_view_id" /> <field name="pivot_view_id" readonly="1" />
<field name="pivot_view_id" /> <field name="search_view_id" readonly="1" />
<field name="search_view_id" /> <field name="action_id" readonly="1" />
<field name="action_id" /> <field name="menu_id" readonly="1" />
<field name="menu_id" />
</group> </group>
</group> </group>
</group>
</page>
</page> </page>
</page> <field name="group_ids" position="attributes">
<attribute
name="invisible"
>state not in ('draft', 'sql_valid')</attribute>
</field>
</field> </field>
</record> </record>
@ -218,7 +243,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<field name="name">SQL Views</field> <field name="name">SQL Views</field>
<field name="type">ir.actions.act_window</field> <field name="type">ir.actions.act_window</field>
<field name="res_model">bi.sql.view</field> <field name="res_model">bi.sql.view</field>
<field name="view_mode">tree,form</field> <field name="view_mode">list,form</field>
</record> </record>
<menuitem <menuitem
@ -236,5 +261,4 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
groups="sql_request_abstract.group_sql_request_user" groups="sql_request_abstract.group_sql_request_user"
sequence="5" sequence="5"
/> />
</odoo> </odoo>

View file

@ -11,23 +11,23 @@ Base report csv
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !! !! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:ea7a062b40320443bdb91ba5319c9f79630439080c9ad3b7919abdbda5a6b294 !! source digest: sha256:d1c3c4d459b6b087099930f6fa7a1626300259aa06098906b5e428b9e556dd28
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status :target: https://odoo-community.org/page/development-status
:alt: Beta :alt: Production/Stable
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
:target: https://github.com/OCA/reporting-engine/tree/16.0/report_csv :target: https://github.com/OCA/reporting-engine/tree/19.0/report_csv
:alt: OCA/reporting-engine :alt: OCA/reporting-engine
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-report_csv :target: https://translation.odoo-community.org/projects/reporting-engine-19-0/reporting-engine-19-0-report_csv
:alt: Translate me on Weblate :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png .. |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=16.0 :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=19.0
:alt: Try me on Runboat :alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5| |badge1| |badge2| |badge3| |badge4| |badge5|
@ -42,22 +42,29 @@ This module provides a basic report class to generate csv report.
Configuration Configuration
============= =============
In case the exported CSV report should be encoded in another system than UTF-8, following In case the exported CSV report should be encoded in another system than
fields of the report record (*Settings > Technical > Reports*) should be populated accordingly. UTF-8, following fields of the report record (*Settings > Technical >
Reports*) should be populated accordingly.
* Encoding: set an encoding system (such as cp932) - Encoding: set an encoding system (such as cp932)
* Encode Error Handling: select 'Ignore' or 'Replace' as necessary. - Encode Error Handling: select 'Ignore' or 'Replace' as necessary.
* 'Ignore': in case of an encoding error, the problematic character will be removed from the exported file. - 'Ignore': in case of an encoding error, the problematic character
* 'Replace': in case of an encoding error, the problematic character will be replaced with '?' symbol. will be removed from the exported file.
* Leaving the field blank: in case of an encoding error, the report generation fails with an error message. - 'Replace': in case of an encoding error, the problematic character
will be replaced with '?' symbol.
- Leaving the field blank: in case of an encoding error, the report
generation fails with an error message.
Usage Usage
===== =====
An example of CSV report for partners on a module called `module_name`: An example of CSV report for partners on a module called
\`module_name\`:
A python class :: A python class :
::
from odoo import models from odoo import models
@ -81,8 +88,9 @@ A python class ::
res['quoting'] = csv.QUOTE_ALL res['quoting'] = csv.QUOTE_ALL
return res return res
A report XML record :
A report XML record :: ::
<report <report
id="partner_csv" id="partner_csv"
@ -102,7 +110,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_. Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
In case of trouble, please check there if your issue has already been reported. 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 If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_csv%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. `feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_csv%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues. Do not contact contributors directly about support or help with technical issues.
@ -110,22 +118,22 @@ Credits
======= =======
Authors Authors
~~~~~~~ -------
* Creu Blanca * Creu Blanca
Contributors Contributors
~~~~~~~~~~~~ ------------
* Enric Tobella <etobella@creublanca.es> - Enric Tobella <etobella@creublanca.es>
* Jaime Arroyo <jaime.arroyo@creublanca.es> - Jaime Arroyo <jaime.arroyo@creublanca.es>
* Rattapong Chokmasermkul <rattapongc@ecosoft.co.th> - Rattapong Chokmasermkul <rattapongc@ecosoft.co.th>
* `Quartile <https://www.quartile.co>`__: - `Quartile <https://www.quartile.co>`__:
* Aung Ko Ko Lin - Aung Ko Ko Lin
Maintainers Maintainers
~~~~~~~~~~~ -----------
This module is maintained by the OCA. This module is maintained by the OCA.
@ -137,6 +145,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use. promote its widespread use.
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/report_csv>`_ project on GitHub. This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/19.0/report_csv>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View file

@ -6,7 +6,7 @@
"author": "Creu Blanca, Odoo Community Association (OCA)", "author": "Creu Blanca, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/reporting-engine", "website": "https://github.com/OCA/reporting-engine",
"category": "Reporting", "category": "Reporting",
"version": "16.0.2.1.1", "version": "19.0.1.0.0",
"license": "AGPL-3", "license": "AGPL-3",
"depends": ["base", "web"], "depends": ["base", "web"],
"demo": ["demo/report.xml"], "demo": ["demo/report.xml"],
@ -16,5 +16,6 @@
"report_csv/static/src/js/report/qwebactionmanager.esm.js" "report_csv/static/src/js/report/qwebactionmanager.esm.js"
] ]
}, },
"development_status": "Production/Stable",
"installable": True, "installable": True,
} }

View file

@ -11,6 +11,8 @@ from odoo.http import (
content_disposition, content_disposition,
request, request,
route, route,
)
from odoo.http import (
serialize_exception as _serialize_exception, serialize_exception as _serialize_exception,
) )
from odoo.tools import html_escape from odoo.tools import html_escape
@ -47,12 +49,10 @@ class ReportController(report.ReportController):
("Content-Length", len(csv)), ("Content-Length", len(csv)),
] ]
return request.make_response(csv, headers=csvhttpheaders) return request.make_response(csv, headers=csvhttpheaders)
return super(ReportController, self).report_routes( return super().report_routes(reportname, docids, converter, **data)
reportname, docids, converter, **data
)
@route() @route()
def report_download(self, data, context=None): def report_download(self, data, context=None, token=None, readonly=True):
requestcontent = json.loads(data) requestcontent = json.loads(data)
url, report_type = requestcontent[0], requestcontent[1] url, report_type = requestcontent[0], requestcontent[1]
reportname = "" reportname = ""
@ -73,8 +73,9 @@ class ReportController(report.ReportController):
url_decode(url.split("?")[1]).items() url_decode(url.split("?")[1]).items()
) # decoding the args represented in JSON ) # decoding the args represented in JSON
if "context" in data: if "context" in data:
context, data_context = json.loads(context or "{}"), json.loads( context, data_context = (
data.pop("context") json.loads(context or "{}"),
json.loads(data.pop("context")),
) )
context = json.dumps({**context, **data_context}) context = json.dumps({**context, **data_context})
response = self.report_routes( response = self.report_routes(
@ -84,7 +85,7 @@ class ReportController(report.ReportController):
report = request.env["ir.actions.report"]._get_report_from_name( report = request.env["ir.actions.report"]._get_report_from_name(
reportname reportname
) )
filename = "%s.%s" % (report.name, "csv") filename = f"{report.name}.csv"
if docids: if docids:
ids = [int(x) for x in docids.split(",")] ids = [int(x) for x in docids.split(",")]
@ -93,13 +94,15 @@ class ReportController(report.ReportController):
report_name = safe_eval( report_name = safe_eval(
report.print_report_name, {"object": obj, "time": time} report.print_report_name, {"object": obj, "time": time}
) )
filename = "%s.%s" % (report_name, "csv") filename = f"{report_name}.csv"
response.headers.add( response.headers.add(
"Content-Disposition", content_disposition(filename) "Content-Disposition", content_disposition(filename)
) )
return response return response
else: else:
return super(ReportController, self).report_download(data, context) return super().report_download(
data, context, token=token, readonly=readonly
)
except Exception as e: except Exception as e:
_logger.exception("Error while generating report %s", reportname) _logger.exception("Error while generating report %s", reportname)
se = _serialize_exception(e) se = _serialize_exception(e)

View file

@ -4,41 +4,41 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 16.0\n" "Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"Last-Translator: \n" "Last-Translator: Automatically generated\n"
"Language-Team: \n" "Language-Team: none\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
#. module: report_csv #. module: report_csv
#: model:ir.model,name:report_csv.model_report_report_csv_abstract #: model:ir.model,name:report_csv.model_report_report_csv_abstract
msgid "Abstract Model for CSV reports" msgid "Abstract Model for CSV reports"
msgstr "Apstraktni model za CSV izvještaje" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling #: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling
msgid "Encode Error Handling" msgid "Encode Error Handling"
msgstr "Rukovanje greškom kodiranja" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encoding #: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encoding
msgid "Encoding" msgid "Encoding"
msgstr "Kodna stranica:" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__encoding #: model:ir.model.fields,help:report_csv.field_ir_actions_report__encoding
msgid "Encoding to be applied to the generated CSV file. e.g. cp932" msgid "Encoding to be applied to the generated CSV file. e.g. cp932"
msgstr "Kodiranje koje će se primijeniti na generisanu CSV datoteku. npr. cp932" msgstr ""
#. module: report_csv #. module: report_csv
#. odoo-python #. odoo-python
#: code:addons/report_csv/report/report_csv.py:0 #: code:addons/report_csv/report/report_csv.py:0
#, python-format
msgid "Failed to encode the data with the encoding set in the report." msgid "Failed to encode the data with the encoding set in the report."
msgstr "Neuspjeh kodiranja podataka s kodiranjem postavljenim u izvještaju." msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling #: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling
@ -50,32 +50,32 @@ msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__ignore #: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__ignore
msgid "Ignore" msgid "Ignore"
msgstr "Ignoriši" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.actions.report,name:report_csv.partner_csv #: model:ir.actions.report,name:report_csv.partner_csv
msgid "Print to CSV" msgid "Print to CSV"
msgstr "Ispiši u CSV" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace #: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace
msgid "Replace" msgid "Replace"
msgstr "Zamijeni" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model,name:report_csv.model_ir_actions_report #: model:ir.model,name:report_csv.model_ir_actions_report
msgid "Report Action" msgid "Report Action"
msgstr "Akcija izvještaja" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model,name:report_csv.model_report_report_csv_partner_csv #: model:ir.model,name:report_csv.model_report_report_csv_partner_csv
msgid "Report Partner to CSV" msgid "Report Partner to CSV"
msgstr "Izvještaj partner u CSV" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__report_type #: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__report_type
msgid "Report Type" msgid "Report Type"
msgstr "Tip izvještaja" msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__report_type #: model:ir.model.fields,help:report_csv.field_ir_actions_report__report_type
@ -89,4 +89,4 @@ msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__report_type__csv #: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__report_type__csv
msgid "csv" msgid "csv"
msgstr "csv" msgstr ""

View file

@ -4,7 +4,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 16.0\n" "Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -18,6 +18,13 @@ msgstr ""
msgid "Abstract Model for CSV reports" msgid "Abstract Model for CSV reports"
msgstr "" msgstr ""
#. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__display_name
#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_abstract__display_name
#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_partner_csv__display_name
msgid "Display Name"
msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling #: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling
msgid "Encode Error Handling" msgid "Encode Error Handling"
@ -36,10 +43,16 @@ msgstr ""
#. module: report_csv #. module: report_csv
#. odoo-python #. odoo-python
#: code:addons/report_csv/report/report_csv.py:0 #: code:addons/report_csv/report/report_csv.py:0
#, python-format
msgid "Failed to encode the data with the encoding set in the report." msgid "Failed to encode the data with the encoding set in the report."
msgstr "" msgstr ""
#. module: report_csv
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__id
#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_abstract__id
#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_partner_csv__id
msgid "ID"
msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling #: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling
msgid "" msgid ""
@ -52,11 +65,6 @@ msgstr ""
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
#. module: report_csv
#: model:ir.actions.report,name:report_csv.partner_csv
msgid "Print to CSV"
msgstr ""
#. module: report_csv #. module: report_csv
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace #: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace
msgid "Replace" msgid "Replace"

View file

@ -53,7 +53,7 @@ class ReportAction(models.Model):
@api.model @api.model
def _render_csv(self, report_ref, docids, data): def _render_csv(self, report_ref, docids, data):
report_sudo = self._get_report(report_ref) report_sudo = self._get_report(report_ref)
report_model_name = "report.%s" % report_sudo.report_name report_model_name = f"report.{report_sudo.report_name}"
report_model = self.env[report_model_name] report_model = self.env[report_model_name]
res_id = docids[0] if docids and len(docids) == 1 else None res_id = docids[0] if docids and len(docids) == 1 else None
if not res_id or not report_sudo.attachment or not report_sudo.attachment_use: if not res_id or not report_sudo.attachment or not report_sudo.attachment_use:
@ -80,7 +80,7 @@ class ReportAction(models.Model):
@api.model @api.model
def _get_report_from_name(self, report_name): def _get_report_from_name(self, report_name):
res = super(ReportAction, self)._get_report_from_name(report_name) res = super()._get_report_from_name(report_name)
if res: if res:
return res return res
report_obj = self.env["ir.actions.report"] report_obj = self.env["ir.actions.report"]

View file

@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"

View file

@ -0,0 +1,12 @@
In case the exported CSV report should be encoded in another system than
UTF-8, following fields of the report record (*Settings \> Technical \>
Reports*) should be populated accordingly.
- Encoding: set an encoding system (such as cp932)
- Encode Error Handling: select 'Ignore' or 'Replace' as necessary.
- 'Ignore': in case of an encoding error, the problematic character
will be removed from the exported file.
- 'Replace': in case of an encoding error, the problematic character
will be replaced with '?' symbol.
- Leaving the field blank: in case of an encoding error, the report
generation fails with an error message.

View file

@ -1,9 +0,0 @@
In case the exported CSV report should be encoded in another system than UTF-8, following
fields of the report record (*Settings > Technical > Reports*) should be populated accordingly.
* Encoding: set an encoding system (such as cp932)
* Encode Error Handling: select 'Ignore' or 'Replace' as necessary.
* 'Ignore': in case of an encoding error, the problematic character will be removed from the exported file.
* 'Replace': in case of an encoding error, the problematic character will be replaced with '?' symbol.
* Leaving the field blank: in case of an encoding error, the report generation fails with an error message.

View file

@ -0,0 +1,5 @@
- Enric Tobella \<<etobella@creublanca.es>\>
- Jaime Arroyo \<<jaime.arroyo@creublanca.es>\>
- Rattapong Chokmasermkul \<<rattapongc@ecosoft.co.th>\>
- [Quartile](https://www.quartile.co):
- Aung Ko Ko Lin

Some files were not shown because too many files have changed in this diff Show more