mirror of
https://github.com/bringout/oca-report.git
synced 2026-04-18 04:02:01 +02:00
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:
parent
05df50b41d
commit
c18e7fd4c7
258 changed files with 8677 additions and 6341 deletions
|
|
@ -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
|
||||
=============
|
||||
|
|
@ -7,68 +11,71 @@ BI SQL Editor
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:1849ead08bc0511282f7e09107fa343bb9ea126755bcc3d05294d954aeca26a3
|
||||
!! source digest: sha256:9a7186167db4d48168e2f8f904d2fd9e6ef20d25fcf521a350050d270feb036e
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor
|
||||
:target: https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor
|
||||
:alt: OCA/reporting-engine
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-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
|
||||
.. |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
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
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)
|
||||
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.
|
||||
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).
|
||||
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.
|
||||
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.
|
||||
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.
|
||||
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
|
||||
- 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
|
||||
|
||||
**Table of contents**
|
||||
|
||||
|
|
@ -78,17 +85,15 @@ this module is interesting for the following use cases
|
|||
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
|
||||
:width: 800 px
|
||||
|image1|
|
||||
|
||||
* 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
|
||||
:width: 800 px
|
||||
|image2|
|
||||
|
||||
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)]``
|
||||
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,
|
||||
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.
|
||||
- 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:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png
|
||||
:width: 800 px
|
||||
|image3|
|
||||
|
||||
* Click on the button 'Create SQL elements'. (this step could
|
||||
take a while, if view is materialized)
|
||||
- Click on the button 'Create SQL elements'. (this step could take a
|
||||
while, if view is materialized)
|
||||
|
||||
* If it's a MATERIALIZED view:
|
||||
- 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)
|
||||
- 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:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png
|
||||
:width: 800 px
|
||||
|image4|
|
||||
|
||||
* 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.
|
||||
- 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.
|
||||
- Finally, click on 'Create UI', to create new menu, action, graph 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
|
||||
=====
|
||||
|
||||
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
|
||||
:width: 800 px
|
||||
|usage-image1|
|
||||
|
||||
* 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
|
||||
===========
|
||||
|
|
@ -146,7 +157,7 @@ Bug Tracker
|
|||
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.
|
||||
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.
|
||||
|
||||
|
|
@ -154,31 +165,46 @@ Credits
|
|||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
-------
|
||||
|
||||
* GRAP
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
------------
|
||||
|
||||
* 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>
|
||||
- Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
|
||||
* 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
|
||||
- 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
|
||||
|
||||
Other credits
|
||||
-------------
|
||||
|
||||
The migration of this module from 17.0 to 18.0 was financially supported
|
||||
by Camptocamp.
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
|
|
@ -198,6 +224,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|||
|
||||
|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.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
{
|
||||
"name": "BI SQL Editor",
|
||||
"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",
|
||||
"category": "Reporting",
|
||||
"author": "GRAP,Odoo Community Association (OCA)",
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|||
-->
|
||||
<odoo>
|
||||
<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 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>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,8 @@
|
|||
# Copyright 2015-2017 Onestein (<http://www.onestein.eu>)
|
||||
# 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):
|
||||
env = Environment(cr, SUPERUSER_ID, {})
|
||||
def uninstall_hook(env):
|
||||
recs = env["bi.sql.view"].search([])
|
||||
for rec in recs:
|
||||
rec.button_set_draft()
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Última actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "آخر تحديث بواسطة"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "النموذج"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "الاسم"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "آخر تعديل في"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "حفظ كمسودة"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Последно обновено от"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Име"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последно обновено на"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Защита"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -16,21 +16,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -119,7 +116,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -204,6 +201,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -294,6 +292,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -307,10 +306,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI"
|
||||
" Valid'."
|
||||
|
|
@ -353,12 +358,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -371,11 +370,6 @@ msgstr ""
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -408,6 +402,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -425,7 +420,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -467,13 +461,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -501,16 +495,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -536,7 +524,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -558,7 +545,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -575,7 +561,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -666,11 +651,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -718,6 +698,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -735,6 +720,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -750,20 +745,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -2,101 +2,104 @@
|
|||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-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"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr "%(model_name)s pristup %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Kopija)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Pristup %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr "Kontekst akcije"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr "Potrebna akcija"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr "Postavke akcije"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
msgid "Allowed Groups"
|
||||
msgstr "Dozvoljene grupe"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "Dozvoljeni korisnici"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr "Broj priloga"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
|
||||
msgid "Available"
|
||||
msgstr "Dostuno"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
|
||||
msgid "Average"
|
||||
msgstr "Prosjek"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "BI SQL View"
|
||||
msgstr "BI SQL prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "Bi SQL polje prikaza"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__parent_menu_id
|
||||
msgid ""
|
||||
"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"
|
||||
" be created."
|
||||
"overwriting the parent menu on which the menu related to the SQL report will "
|
||||
"be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
|
||||
msgid ""
|
||||
"By default, Odoo will sum the values when grouping. If you wish to alter the"
|
||||
" behaviour, choose an alternate Group Operator"
|
||||
"By default, Odoo will sum the values when grouping. If you wish to alter the "
|
||||
"behaviour, choose an alternate Group Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -115,22 +118,22 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
|
||||
msgid "Column"
|
||||
msgstr "Kolona"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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\""
|
||||
msgstr "Tekst odvojen zarezima. Moguće vrijednosti: \"graph\", \"pivot\", \"tree\" ili \"form\""
|
||||
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"list\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
|
||||
msgid "Computed Action Context"
|
||||
msgstr "Izračunati kontekst akcije"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Computed Context"
|
||||
msgstr "Izračunati kontekst"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
|
|
@ -142,12 +145,12 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgstr "Kreiraj SQL elemente"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr "Kreiraj UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Cron Task that will refresh the materialized view"
|
||||
msgstr "Cron zadatak koji će osvježiti materijalizirani prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Custom Context"
|
||||
msgstr "Prilagođeni kontekst"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
msgstr "Veličina baze podataka"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid ""
|
||||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',False)]."
|
||||
" 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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr "Obriši SQL elemente"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr "Obriši UI"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr "Dodatna definicija pravila"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
msgstr "Dodatne informacije"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr "Kontekst polja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
msgstr "Opis polja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr "Tip polja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
|
||||
msgid "Fields"
|
||||
msgstr "Polja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr "Pratioci"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr "Pratioci (Partneri)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid ""
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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."
|
||||
msgstr "Puno kvalifikovano ime tranzijentnog modela koji će biti kreiran."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "Full name of the SQL view"
|
||||
msgstr "Puno ime SQL prikaza"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
msgstr "Tip grafikona"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
|
||||
msgid "Group Operator"
|
||||
msgstr "Operator grupiranja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid "Has Group Changed"
|
||||
msgstr "Da li je grupa promijenjena"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
msgstr "Ima poruku"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
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
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI"
|
||||
" Valid'."
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
msgstr "Naziv indeksa"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr "Nevidljivo"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr "Pratilac"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid "Is Group by"
|
||||
msgstr "Je li grupiraj po"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
msgstr "Je li indeks"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized
|
||||
msgid "Is Materialized View"
|
||||
msgstr "Je li materijalizirani prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -353,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -371,50 +378,46 @@ msgstr "Zadnji ažurirao"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
msgstr "Materijalizirani tekst"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
|
||||
msgid "Maximum"
|
||||
msgstr "Maksimum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
|
||||
msgid "Measure"
|
||||
msgstr "Mjera"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr "Greška pri isporuci poruke"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr "Poruke"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
msgstr "Minimum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Naziv modela"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
|
|
@ -425,7 +428,6 @@ msgstr "Ime"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -434,148 +436,139 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr "Zabilješka"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr "Broj akcija"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr "Broj grešaka"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr "Broj poruka koje zahtijevaju aktivnost"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr "Broj poruka sa greškama pri isporuci"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr "Odoo akcija"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "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 "Odoo prikaz forme"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr "Odoo meni"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "Odoo Model"
|
||||
msgstr "Odoo model"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id
|
||||
msgid "Odoo Pivot View"
|
||||
msgstr "Odoo pivot prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
msgstr "Odoo pravilo"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id
|
||||
msgid "Odoo Search View"
|
||||
msgstr "Odoo prikaz pretrage"
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgstr "Podržani su samo prikazi grafik, pivot, stablo ili forma"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Open View"
|
||||
msgstr "Otvori pogled"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr "Opciono (skriveno)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr "Opciono (prikazano)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
|
||||
msgid "Parent Odoo Menu"
|
||||
msgstr "Roditeljski Odoo meni"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Upit"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr "Osvježi"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr "Osježi materijalizirani prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Osježi materijalizirani prikaz %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
|
||||
msgid "Row"
|
||||
msgstr "Red"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr "Definicija pravila"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Fields"
|
||||
msgstr "SQL polja"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
msgstr "SQL izvještaji"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid ""
|
||||
"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"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
msgstr ""
|
||||
|
|
@ -604,44 +598,44 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type
|
||||
msgid "SQL Type"
|
||||
msgstr "SQL tip"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type
|
||||
msgid "SQL Type in the database"
|
||||
msgstr "SQL tip u bazi podataka"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id
|
||||
msgid "SQL View"
|
||||
msgstr "SQL prikaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid
|
||||
msgid "SQL View and Model Created"
|
||||
msgstr "SQL prikaz i model kreiran"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid "SQL Views"
|
||||
msgstr "SQL prikazi"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr "Opcije izbora"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Size of the materialized view and its indexes"
|
||||
msgstr "Veličina materijalizovanog prikaza i njegovih indeksa"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid ""
|
||||
"Suffix of the SQL view. SQL full name will be computed and prefixed by "
|
||||
"'x_bi_sql_view_'. Syntax should follow: "
|
||||
"https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-"
|
||||
"SYNTAX-IDENTIFIERS"
|
||||
"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/"
|
||||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
|
||||
msgid "Sum"
|
||||
msgstr "Zbroj"
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Tehnički naziv"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid ""
|
||||
"Technical fields, used in modules that depends on this one to know if groups"
|
||||
" has changed, and that according access should be updated."
|
||||
"Technical fields, used in modules that depends on this one to know if groups "
|
||||
"has changed, and that according access should be updated."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Ovo će biti korišeno kao naziv Odoo polja, prikazano korisnicima"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "This will create Odoo View, Action and Menu"
|
||||
msgstr "Ovo će kreirati Odoo prikaz, akciju i meni"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -703,30 +691,35 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
msgstr "Vidljivost stabla"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid ""
|
||||
"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 "
|
||||
"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 "
|
||||
"available for search or group by function"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
msgstr "Nedostupno"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr "Ažuriraj pristup modelu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -735,80 +728,110 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr "Naziv pogleda"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
msgstr "Redoslijed prikaza"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "Ne možete kreirati indekse na nematerijalizovanim prikazima"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
msgid "boolean"
|
||||
msgstr "logični"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "char"
|
||||
msgstr "znak"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
|
||||
msgid "date"
|
||||
msgstr "datum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "datetime"
|
||||
msgstr "datumvrijeme"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
|
||||
msgid "float"
|
||||
msgstr "decimalni"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr "cijeli broj"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr "mnogi-za-jedan"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "odabir"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__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"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: ca\n"
|
||||
|
|
@ -17,26 +17,23 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
"X-Generator: Weblate 5.10.4\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
msgstr "%(model_name)s Accès %(full_name)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Còpia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Accés %s"
|
||||
|
||||
|
|
@ -48,7 +45,7 @@ msgstr "Context d'acció"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
msgstr "És necessària una acció"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr ""
|
||||
msgstr "Comptador adjunts"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
|
||||
msgid "Average"
|
||||
msgstr ""
|
||||
msgstr "Mitjana"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"be created."
|
||||
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
|
||||
#: 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 "
|
||||
"behaviour, choose an alternate Group Operator"
|
||||
msgstr ""
|
||||
"Per defecte, Odoo suma els valors agrupats. Si voleu alterar el "
|
||||
"comportament, escolliu un operador de grup alternatiu"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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 ""
|
||||
"Text separat per comes. Valors possibles: \"graph\", \"pivot\" o \"list\""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
|
||||
msgid "Computed Action Context"
|
||||
msgstr ""
|
||||
msgstr "Context d'acció calculat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Computed Context"
|
||||
msgstr ""
|
||||
msgstr "Context calculat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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. "
|
||||
"Important note : please write a context with single quote."
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgstr ""
|
||||
msgstr "Crear elements SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Custom Context"
|
||||
msgstr ""
|
||||
msgstr "Context personalitzat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" 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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"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"
|
||||
" ['|', ('x_company_id','fill_de', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
"['|', ('x_company_id','fill_de', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr ""
|
||||
msgstr "Eliminar elements SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr ""
|
||||
msgstr "Eliminar IU"
|
||||
|
||||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
|
|
@ -238,7 +242,7 @@ msgstr "Informació addicional"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr ""
|
||||
msgstr "Context del camp"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
|
||||
msgid "Fields"
|
||||
msgstr ""
|
||||
msgstr "Camps"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
msgstr "Seguidors"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
msgstr "Seguidors (partners)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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."
|
||||
msgstr ""
|
||||
"Pel camp Odoo 'Many2one'.\n"
|
||||
" Comodel del camp."
|
||||
"Comodel del camp."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
|
||||
msgid "Group Operator"
|
||||
msgstr ""
|
||||
msgstr "Operador de grup"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
msgstr "Té missatges"
|
||||
|
||||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -326,20 +331,31 @@ msgstr "ID"
|
|||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
"Si està marcat, hi ha missatges nous que requereixen la vostra atenció."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_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 ""
|
||||
"Si està ple, la consulta s'executarà contra una BD externa, configurada al "
|
||||
"fitxer principal de configuració de Odoo. "
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
msgstr ""
|
||||
"No es poden esborrar camps si la vista és en l'estat 'Model vàlid' o 'IU "
|
||||
"vàlida'."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr ""
|
||||
msgstr "Invisible"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
msgstr "És seguidor"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"with the columns"
|
||||
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 "Darrera modificació el"
|
||||
"Això esborrarà la vista materialitzada i tots els mapejos previs realitzats "
|
||||
"amb les columnes"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -409,7 +416,7 @@ msgstr "Text materialitzat"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
|
||||
msgid "Maximum"
|
||||
msgstr ""
|
||||
msgstr "Màxim"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
msgstr "Error de lliurament de missatge"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
msgstr "Missatges"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
msgstr ""
|
||||
msgstr "Mínim"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -450,7 +458,6 @@ msgstr "Nom"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -461,27 +468,27 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
msgstr "Nota"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
msgstr "Nombre d'accions"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr ""
|
||||
msgstr "Nombre d'errors"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
msgstr "Nombre de missatges que requereixen una acció"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr ""
|
||||
msgstr "Nombre de missatges amb error d'entrega"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -528,17 +535,11 @@ msgstr "Regla Odoo"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgstr ""
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr "Només estan suportades les vistes gràfic, pivot o llista"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr ""
|
||||
msgstr "Opcional (ocult)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr ""
|
||||
msgstr "Opcional (mostrar)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
|
||||
msgid "Parent Odoo Menu"
|
||||
msgstr ""
|
||||
msgstr "Menú pare Odoo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Consulta "
|
||||
msgstr "Consulta"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
msgstr "Refrescar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Refrescar vista materialitzada %s"
|
||||
|
||||
|
|
@ -602,11 +601,12 @@ msgstr "Definició de la regla"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
msgstr ""
|
||||
"Error SQL mentre es creava la vista %(materialized_text)s %(view_name)s :\n"
|
||||
"%(error)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
|
||||
msgid "Sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Technical Details"
|
||||
msgstr ""
|
||||
msgstr "Suma"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"has changed, and that according access should be updated."
|
||||
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
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
|
|
@ -759,7 +756,12 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
msgstr "Actualitzar accés al model"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"created the model"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
msgstr ""
|
||||
msgstr "Ordre de la vista"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
|
||||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "No podeu crear índexs en vistes no materialitzades"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
"Només podeu eliminar vistes en esborrany. Si voleu eliminar-les, primer "
|
||||
"passeu-les esborrany."
|
||||
"Només podeu eliminar vistes en esborrany. Si voleu esborrar-les, primer "
|
||||
"passeu-les a esborrany."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
|
|
@ -858,19 +880,27 @@ msgstr "selecció"
|
|||
msgid "sequence"
|
||||
msgstr "seqüència"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Interfície d'usuari"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
#~ msgstr ""
|
||||
#~ "Text separat per comes. Valors possibles: \"gràfic\", \"pivot\" o "
|
||||
#~ "\"arbre\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Vista de llista Odoo"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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 ""
|
||||
#~ "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"
|
||||
|
|
@ -879,6 +909,9 @@ msgstr "seqüència"
|
|||
#~ "Esborrarà la vista materialitzada, i tot el mapeig anterior realitzat amb "
|
||||
#~ "les columnes"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Darrera modificació el"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Passar a esborrany"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Naposled upraveno"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Název"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Nastavit na koncept"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Sidst opdateret af"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Navn"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sidst ændret den"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Sikkerhed"
|
||||
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Kopie)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Zugriff %s"
|
||||
|
||||
|
|
@ -129,9 +126,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -200,8 +195,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -217,6 +212,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
|
|
@ -308,6 +304,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -321,10 +318,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -367,12 +370,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -385,11 +382,6 @@ msgstr "Zuletzt aktualisiert durch"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -422,6 +414,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modell"
|
||||
|
||||
|
|
@ -439,7 +432,6 @@ msgstr "Bezeichnung"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -481,13 +473,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -515,16 +507,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -550,7 +536,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -572,7 +557,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -589,7 +573,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -683,11 +666,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -735,6 +713,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -752,6 +735,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -767,20 +760,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -838,6 +839,9 @@ msgstr ""
|
|||
#~ "möchten? Dies wird Ihre umgesetzten Sichten und vorausgegangene "
|
||||
#~ "Spaltenzuordnungen löschen"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zuletzt geändert am"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Auf Entwurf setzen"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Τελευταία ενημέρωση από"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Ονομασία"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/"
|
||||
"23907/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Last Updated by"
|
|||
msgid "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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Name"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Last Modified on"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Set to Draft"
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr "%(model_name)s Acceso %(full_name)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Copia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Acceso %s"
|
||||
|
||||
|
|
@ -132,9 +129,7 @@ msgstr "Columna"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -207,15 +202,15 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"Defina aquí la restricción de acceso a los datos.\n"
|
||||
" 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 "
|
||||
"ejemplo\n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
|
|
@ -327,6 +323,7 @@ msgstr "Tiene Mensaje"
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "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."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -390,12 +393,6 @@ msgstr ""
|
|||
"Se borrará la vista materializada, y todos los mapeos previos realizados con "
|
||||
"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
|
||||
#: 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
|
||||
|
|
@ -408,11 +405,6 @@ msgstr "Última actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -445,6 +437,7 @@ msgstr "Mínimo"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -462,7 +455,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -505,16 +497,16 @@ msgstr "Acción Odoo"
|
|||
msgid "Odoo Cron"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -540,16 +532,10 @@ msgstr "Regla Odoo"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -575,7 +561,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr "Por favor, establezca modelos relacionados en los siguientes campos %s"
|
||||
|
||||
|
|
@ -597,7 +582,6 @@ msgstr "Refrescar vista materializada"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Refrescar vista materializada %s"
|
||||
|
||||
|
|
@ -614,7 +598,6 @@ msgstr "Definición de regla"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -710,8 +693,8 @@ msgid ""
|
|||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
msgstr ""
|
||||
"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."
|
||||
"postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-"
|
||||
"prefijo 'x_bi_sql_view_'. La sintaxis debe ser la siguiente: https://"
|
||||
"www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-"
|
||||
"IDENTIFIERS"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -719,11 +702,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -780,6 +758,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -799,6 +782,16 @@ msgstr ""
|
|||
"Actualizar acceso al modelo. Obligatorio si ha modificado la lista de grupos "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -814,24 +807,30 @@ msgstr "Ver el pedido"
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "No se pueden crear índices en vistas no materializadas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
"Sólo puedes desvincular vistas borrador.Si quieres eliminarlas, primero "
|
||||
"ponlas en borrador."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "secuencia"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Interfaz de usuario"
|
||||
#~ msgid "SMS Delivery error"
|
||||
#~ msgstr "Error en la entrega de sms"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
|
|
@ -888,10 +887,21 @@ msgstr "secuencia"
|
|||
#~ "Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o "
|
||||
#~ "\"tree\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Vista en árbol de Odoo"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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 ""
|
||||
#~ "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"
|
||||
|
|
@ -908,15 +918,18 @@ msgstr "secuencia"
|
|||
#~ "de lista de campos. Contexto personalizado se insertará en las vistas "
|
||||
#~ "creadas."
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Main Attachment"
|
||||
#~ msgstr "Adjunto Principal"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Cambiar a borrador"
|
||||
|
||||
#~ msgid "Use Context Field"
|
||||
#~ msgstr "Utilizar campo de contexto"
|
||||
|
||||
#~ msgid "SMS Delivery error"
|
||||
#~ msgstr "Error en la entrega de sms"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
#~ msgstr "%m/%d/%Y %H:%M:%S UTC"
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-08-12 02:51+0000\n"
|
||||
"PO-Revision-Date: 2023-04-07 20:23+0000\n"
|
||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
|
||||
"23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Copia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Acceso %s"
|
||||
|
||||
|
|
@ -131,9 +128,7 @@ msgstr "Columna"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -202,14 +197,14 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"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 "
|
||||
"'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','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -224,6 +219,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
|
|
@ -321,6 +317,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -334,10 +331,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -380,12 +383,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -398,11 +395,6 @@ msgstr "Última actualización realizada por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -435,6 +427,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -452,7 +445,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -495,16 +487,16 @@ msgstr "Acción de Odoo"
|
|||
msgid "Odoo Cron"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -530,16 +522,10 @@ msgstr "Regla de Odoo"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -565,7 +551,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -587,7 +572,6 @@ msgstr "Recargar Vista Materializada"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Recargar Vista Materializada %s"
|
||||
|
||||
|
|
@ -604,7 +588,6 @@ msgstr "Definición de Regla"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -698,19 +681,15 @@ msgid ""
|
|||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
msgstr ""
|
||||
"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."
|
||||
"org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
"prefijo 'x_bi_sql_view_'. La sintaxis debe seguir: https://"
|
||||
"www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-"
|
||||
"IDENTIFIERS"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
|
||||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -765,6 +744,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -784,6 +768,16 @@ msgstr ""
|
|||
"Actualizar Modelos de Acceso. Obligatorio si cambió la lista de grupos "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -799,24 +793,30 @@ msgstr "Ordenar Vista"
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "No puede crear índice en vistas no materializadas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
"Solo puede desvincular vistas de borrador. Si desea eliminarlas, primero "
|
||||
"configúrelas como borrador."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
|
|
@ -864,19 +864,27 @@ msgstr "selection"
|
|||
msgid "sequence"
|
||||
msgstr "sequence"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Interfaz de Usuario"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
#~ msgstr ""
|
||||
#~ "Texto separado por comas. Valores posibles: \"graph\", \"pivot\" o "
|
||||
#~ "\"tree\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Vista Lista de Odoo"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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 ""
|
||||
#~ "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"
|
||||
|
|
@ -885,6 +893,9 @@ msgstr "sequence"
|
|||
#~ "Borrará la vista materializada, y todo el mapeo anterior realizado con "
|
||||
#~ "las columnas"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Restablecer a Borrador"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última actualización de"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Seguridad"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Actualizado por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificación el"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Seguridad"
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/"
|
||||
"23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Ultima actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última actualización de"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Seguridad"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última actualización de"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Cambiar a borrador"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Ultima actualizacion por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modificacion realizada"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Cambiar a borrador"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Actualizado última vez por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima Modificación en"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Seguridad"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Ultima actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_VE/)\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/"
|
||||
"23907/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última actualización realizada por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nombre"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificada por última vez"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Seguridad"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Viimati uuendatud"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Nimi"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimati muudetud"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Sea mustandiks"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Last Updated by"
|
|||
msgid "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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Izena"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "آخرین به روز رسانی توسط"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "نام"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "امنیت"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Viimeksi päivittänyt"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Mall"
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Nimi"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimeksi muokattu"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Aseta luonnokseksi"
|
||||
|
||||
|
|
|
|||
|
|
@ -19,21 +19,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Copie)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Accès %s"
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr "Colonne"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -199,15 +194,15 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"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."
|
||||
"rule' global sera créé. Une règle classique en multi-companie est, par "
|
||||
" Faite attention à utilliser des noms de champs préfixés par 'x_'. Un "
|
||||
"'ir.rule' global sera créé. Une règle classique en multi-companie est, par "
|
||||
"exemple : \n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -222,6 +217,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
|
|
@ -319,6 +315,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -332,10 +329,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -378,12 +381,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -396,11 +393,6 @@ msgstr "Dernière mise à jour par"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -433,6 +425,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modèle"
|
||||
|
||||
|
|
@ -450,7 +443,6 @@ msgstr "Nom"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -493,16 +485,16 @@ msgstr "Action Odoo"
|
|||
msgid "Odoo Cron"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -528,16 +520,10 @@ msgstr "Règle Odoo"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -563,7 +549,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +570,6 @@ msgstr "Rafraichir la vue matérialisée"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Rafraichir la vue matérialisée %s"
|
||||
|
||||
|
|
@ -602,7 +586,6 @@ msgstr "Définition de règle"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -707,11 +690,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -766,6 +744,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -785,6 +768,16 @@ msgstr ""
|
|||
"Mettre à jour l'accès au modèle. Requis si vous changez la liste de groupes, "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -800,24 +793,30 @@ msgstr "Ordre des vues"
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "Tâche CRON qui va rafraichir la vue matérialisée"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
|
|
@ -865,19 +864,27 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Interface utilisateur"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
#~ msgstr ""
|
||||
#~ "Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" "
|
||||
#~ "ou \"tree\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Vue Liste Odoo"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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 ""
|
||||
#~ "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"
|
||||
|
|
@ -886,5 +893,8 @@ msgstr "Séquence"
|
|||
#~ "supprimera la vue (matérialisée), et tout le mapping préalablement "
|
||||
#~ "réalisé sur les colonnes"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Remettre en brouillon"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Dernière mise à jour par"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modèle"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nom"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
|
||||
"teams/23907/fr_CH/)\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/"
|
||||
"23907/fr_CH/)\n"
|
||||
"Language: fr_CH\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Modifié par"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Brouillon"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "ültima actualización por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Nome"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr ""
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "עודכן לאחרונה על ידי"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "שם"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "אבטחה"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Zadnju izmjenu izvršio/la"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Naziv"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr "odabir"
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Postavi na nacrt"
|
||||
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Zadnji ažurirao"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr "Naziv"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,3 +824,6 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
|
||||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje modificirano"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Utoljára frissítve, által"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modell, minta"
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Név"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Beállítás tervezetnek"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Diperbaharui oleh"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Nama"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Keamanan"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr "%(model_name)s Accesso %(full_name)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (copia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Accesso %s"
|
||||
|
||||
|
|
@ -98,8 +95,8 @@ msgid ""
|
|||
"overwriting the parent menu on which the menu related to the SQL report will "
|
||||
"be created."
|
||||
msgstr ""
|
||||
"Assegnando un valore a questo campo prima di creare manualmente la UI, si "
|
||||
"sta sovrascrivendo il menu padre nel quale il menu relativo al resoconto SQL "
|
||||
"Assegnano un valore a questo campo prima di creare manualmente la UI, si sta "
|
||||
"sovrascrivendo il menu padre nel quale il menu relativo al resoconto SQL "
|
||||
"verrà creato."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -137,12 +134,9 @@ msgstr "Colonna"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
"Testo separato da virgole. Valori possibili: \"graph\", \"pivot\", \"tree\" "
|
||||
"o \"form\""
|
||||
"Testo separato da virgole. Valori possibili: \"graph\", \"pivot\" or \"list\""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" 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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"Definire qui le restrizioni di accesso ai dati.\n"
|
||||
" Fare attenzione ad usare nomi campi con prefisso 'x_'. Verrà creata una 'ir."
|
||||
"rule' gobale. Una tipi ca regola multi azienda è per esempio\n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" Fare attenzione ad usare nomi campi con prefisso 'x_'. Verrà creata una "
|
||||
"'ir.rule' gobale. Una tipi ca regola multi azienda è per esempio\n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
|
|
@ -333,6 +328,7 @@ msgstr "Ha un messaggio"
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -346,10 +342,18 @@ msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -396,12 +400,6 @@ msgstr ""
|
|||
"Cancellerà la vista realizzata e tutte le precedenti mappature realizzate "
|
||||
"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
|
||||
#: 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
|
||||
|
|
@ -414,11 +412,6 @@ msgstr "Ultimo aggiornamento di"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -451,6 +444,7 @@ msgstr "Minimo"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modello"
|
||||
|
||||
|
|
@ -468,7 +462,6 @@ msgstr "Nome"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -511,16 +504,16 @@ msgstr "Azione Odoo"
|
|||
msgid "Odoo Cron"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -529,7 +522,7 @@ msgstr "Menu Odoo"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "Odoo Model"
|
||||
msgstr "Modello Odoo"
|
||||
msgstr "Modulo Odoo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgstr "Sono supportate solo le viste graph, pivot, tree o form"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr "Sono supportate solo viste graph, pivot or list"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr "Impostare il modello related nei sequenti campi %s"
|
||||
|
||||
|
|
@ -603,7 +589,6 @@ msgstr "Aggiorna vista realizzata"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Aggiorna vista realizzata %s"
|
||||
|
||||
|
|
@ -620,7 +605,6 @@ msgstr "Definizione regola"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -716,20 +700,15 @@ msgid ""
|
|||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
msgstr ""
|
||||
"Suffisso della vista SQL. Il nome completo SQL verrà calcolato con prefisso "
|
||||
"'x_bi_sql_view_'. La sintassi deve essere la seguente: https://www."
|
||||
"postgresql.org/docs/current/static/sql-syntax-lexical.html#IDENTIFICATORI-"
|
||||
"SINTASSI-SQL"
|
||||
"'x_bi_sql_view_'. La sintassi deve essere la seguente: https://"
|
||||
"www.postgresql.org/docs/current/static/sql-syntax-"
|
||||
"lexical.html#IDENTIFICATORI-SINTASSI-SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
|
||||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -784,7 +763,12 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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
|
||||
#: 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 "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -820,20 +814,28 @@ msgstr "Visualizza ordine"
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "Si possono non creare indici per le viste non realizzate"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
"Si possono scollegare solo le viste in bozza. Se si vogliono cancellare, "
|
||||
|
|
@ -885,11 +887,8 @@ msgstr "selection"
|
|||
msgid "sequence"
|
||||
msgstr "sequence"
|
||||
|
||||
#~ msgid "UI Parameters"
|
||||
#~ msgstr "Parametri UI"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Interfaccia utente"
|
||||
#~ msgid "SMS Delivery error"
|
||||
#~ msgstr "Errore consegna SMS"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
|
|
@ -897,10 +896,24 @@ msgstr "sequence"
|
|||
#~ "Testo separato da virgole. Valori possibili: \"graph\", \"pivot\" o "
|
||||
#~ "\"tree\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Vista elenco Odoo"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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"
|
||||
#~ msgstr "Imposta a bozza"
|
||||
|
||||
|
|
|
|||
|
|
@ -9,86 +9,82 @@ msgstr ""
|
|||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-12 02:51+0000\n"
|
||||
"PO-Revision-Date: 2024-01-17 11:33+0000\n"
|
||||
"Last-Translator: \"Ivy Liu (QRTL)\" <liuhehe@quartile.co>\n"
|
||||
"PO-Revision-Date: 2017-08-12 02:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr "%(model_name)s アクセス %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (コピー)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "アクセス %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr "アクションコンテキスト"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr "対応必要"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr "アクション設定"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
msgid "Allowed Groups"
|
||||
msgstr "許可グループ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "許可ユーザ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr "添付ファイル数"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
|
||||
msgid "Available"
|
||||
msgstr "利用可能"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
|
||||
msgid "Average"
|
||||
msgstr "平均"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "BI SQL View"
|
||||
msgstr "BI SQL View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "BI SQL Viewフィールド"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"behaviour, choose an alternate Group Operator"
|
||||
msgstr ""
|
||||
"デフォルトでは、Odooはグループ化する際に値を合計します。挙動を変更したい場合"
|
||||
"は、別のグループ演算子を選択してください"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid ""
|
||||
"Check this box if you want to create a 'group by' option in the search view"
|
||||
msgstr ""
|
||||
"検索ビューに 「グループ化」 オプションを作成したい場合はこのボックスをチェッ"
|
||||
"クしてください"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"recommended for searchable and groupable fields, to reduce duration"
|
||||
msgstr ""
|
||||
"フィールドにインデックスを作成したい場合はこのボックスをチェックしてくださ"
|
||||
"い。検索可能やグループ化対象のフィールドには処理効率化の為、インデックス設定"
|
||||
"を推奨します"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
|
||||
msgid "Column"
|
||||
msgstr "列"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
|
||||
msgid "Computed Action Context"
|
||||
msgstr "アクションコンテキスト算出"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Computed Context"
|
||||
msgstr "コンテキスト算出"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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. "
|
||||
"Important note : please write a context with single quote."
|
||||
msgstr ""
|
||||
"全てのビューでこのフィールドに挿入されるコンテキスト値。注意:コンテキストは"
|
||||
"一重引用符で囲んで記述してください。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgstr "SQLエレメント作成"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr "UI作成"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
|
|
@ -181,25 +166,23 @@ msgstr "作成日"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Cron Task that will refresh the materialized view"
|
||||
msgstr "マテリアライズドビューを更新するクーロンタスク"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Custom Context"
|
||||
msgstr "カスタムコンテキスト"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
msgstr "データベースサイズ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid ""
|
||||
"Define here a context that will be used by default, when creating the action."
|
||||
msgstr ""
|
||||
"アクションを作成する際に、デフォルトで使用されるコンテキストをここで定義しま"
|
||||
"す。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" 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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"ここでデータへのアクセス制限を定義します。.\n"
|
||||
" フィールド名の先頭に'x_'をつけてください。 グローバルな「ir.rule」が作成され"
|
||||
"ます。典型的なマルチカンパニールールは以下の通り \n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr "SQLエレメント削除"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr "UI削除"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr "追加ルール定義"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
msgstr "追加情報"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr "フィールドコンテキスト"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
msgstr "フィールド説明"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr "フィールドタイプ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
|
||||
msgid "Fields"
|
||||
msgstr "フィールド"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr "フォロワー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr "フォロワー(パートナー)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
"Odooフィールド'Many2one' について、\n"
|
||||
"フィールドのモデル。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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, "
|
||||
"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]"
|
||||
msgstr ""
|
||||
"Odoo フィールド'Selection' について、\n"
|
||||
"オプションのリストは、(key, label) のペアのリストを定義する Python 式として指"
|
||||
"定されます。例:[('blue','Blue'), ('yellow','Yellow')]"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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."
|
||||
msgstr "作成される過渡モデルの完全修飾名。"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "Full name of the SQL view"
|
||||
msgstr "SQLビューフルネーム"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
msgstr "グラフタイプ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
|
||||
msgid "Group Operator"
|
||||
msgstr "グループ演算子"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid "Has Group Changed"
|
||||
msgstr "グループ変更"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
msgstr "メッセージあり"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr "チェックが入っている場合、新着メッセージに注意が必要です。"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
msgstr ""
|
||||
"ビューの状態が「モデル有効」又は「UI有効」の場合はフィールドを削除できませ"
|
||||
"ん。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
msgstr "インデックス名"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr "インビジブル"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr "フォロワー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid "Is Group by"
|
||||
msgstr "グループ化"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
msgstr "インデックス"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized
|
||||
msgid "Is Materialized View"
|
||||
msgstr "マテリアライズドビュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"with the columns"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid
|
||||
|
|
@ -405,50 +377,46 @@ msgstr "最終更新者"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
msgstr "マテリアライズドテキスト"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
|
||||
msgid "Maximum"
|
||||
msgstr "最大値"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
|
||||
msgid "Measure"
|
||||
msgstr "値"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr "送信エラーメッセージ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr "メッセージ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
msgstr "最小値"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "モデル"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "モデル名"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
|
|
@ -459,110 +427,101 @@ msgstr "名称"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
msgstr ""
|
||||
"カラムが見つかりませんでした。\n"
|
||||
"カラム名の先頭には 'x_' を付ける必要があります。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr "ノート"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr "アクション数"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr "エラー数"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr "対応必要メッセージ数"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr "送信エラーメッセージ数"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr "Odooアクション"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr "Odooメニュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "Odoo Model"
|
||||
msgstr "Odooモデル"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id
|
||||
msgid "Odoo Pivot View"
|
||||
msgstr "Odooピボットビュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
msgstr "Odooルール"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id
|
||||
msgid "Odoo Search View"
|
||||
msgstr "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 "Odooツリービュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Open View"
|
||||
msgstr "ビューを開く"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr "オプション (非表示)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr "オプション (表示)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr "以下のフィールドに関連モデルを設定してください %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "クエリ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr "リフレッシュ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr "マテリアライズドビューをリフレッシュ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "マテリアライズドビューをリフレッシュ %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
|
||||
msgid "Row"
|
||||
msgstr "行"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr "ルール定義"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
msgstr ""
|
||||
"%(materialized_text)s ビュー %(view_name)s を作成中に SQLエラーが発生しまし"
|
||||
"た : \n"
|
||||
"%(error)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid "SQL Fields"
|
||||
msgstr "SQLフィールド"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
msgstr "SQLレポート"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
msgstr ""
|
||||
"ビューとして挿入されるSQLリクエストについて、以下の点に注意してください:\n"
|
||||
" * 選択された全てのフィールドに名前を設定してください。SQL関数(like "
|
||||
"EXTRACT, ...)を使用する場合は特にそうです;\n"
|
||||
" * 'SELECT *' や 'SELECT table.*' は使用しないでください*';\n"
|
||||
" * 選択可能なカラム名の前に 'x_' を付けてください;"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type
|
||||
msgid "SQL Type"
|
||||
msgstr "SQLタイプ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type
|
||||
msgid "SQL Type in the database"
|
||||
msgstr "データベース内のSQLタイプ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id
|
||||
msgid "SQL View"
|
||||
msgstr "SQLビュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid
|
||||
msgid "SQL View and Model Created"
|
||||
msgstr "SQLビューとモデル作成"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid "SQL Views"
|
||||
msgstr "SQLビュー"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr "選択オプション"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Size of the materialized view and its indexes"
|
||||
msgstr "マテリアライズドビューとインデックスサイズ"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__state
|
||||
msgid "State"
|
||||
msgstr "状態"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
|
|
@ -696,9 +644,6 @@ msgid ""
|
|||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
"リクエスト状態:\n"
|
||||
" * 'ドラフト': 未テスト\n"
|
||||
" * 'SQL有効': SQLリクエストはチェックされ有効です"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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/"
|
||||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "技術名称"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"has changed, and that according access should be updated."
|
||||
msgstr ""
|
||||
"このモジュールに依存する他のモジュールがグループの変更を確認し、それに応じて"
|
||||
"アクセス権を更新する為に使用するテクニカルフィールドです。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "これはユーザに表示されるOdooフィールド名として使用されます"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "This will create Odoo View, Action and Menu"
|
||||
msgstr "これはOdooのビュー、アクション及びメニューを作成します"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"according Transient Model and fields, based on settings"
|
||||
msgstr ""
|
||||
"SQLリクエストと対応する過渡モデル及びフィールドに基づき、SQLビューを作成しよ"
|
||||
"うとします"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
msgstr "ツリービューの可視性"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"available for search or group by function"
|
||||
msgstr ""
|
||||
"Odooフィールドのタイプを作成します。新しいフィールドを作成しない場合は空のま"
|
||||
"まにしてください。空の場合、このフィールドは表示されず、検索やグループ化もで"
|
||||
"きません"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
msgstr "無効"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr "モデルアクセスを更新"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr "ビュー名前"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
msgstr "ビュー順序"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
"マテリアライズドビュー以外のビューにインデックスを作成することはできません"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
"ドラフトビューのみ削除可能。削除したい場合は、まずドラフトに設定してくださ"
|
||||
"い。"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
msgid "boolean"
|
||||
msgstr "ブーリアン型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "char"
|
||||
msgstr "Char型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
|
||||
msgid "date"
|
||||
msgstr "Date型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "datetime"
|
||||
msgstr "Datetime型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
|
||||
msgid "float"
|
||||
msgstr "float型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr "整数型"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr "多対一"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "抽出"
|
||||
msgstr ""
|
||||
|
||||
#. 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_field__sequence
|
||||
msgid "sequence"
|
||||
msgstr "シーケンス"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ 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 "Last Modified on"
|
||||
#~ msgstr "最終更新日"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "ドラフトに設定"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "최근 갱신한 사람"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "이름"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "최근 수정"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "보안"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Paskutinį kartą atnaujino"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Pavadinimas"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Paskutinį kartą keista"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Nustatyti kaip juodraštį"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
|
||||
"teams/23907/lt_LT/)\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/"
|
||||
"23907/lt_LT/)\n"
|
||||
"Language: lt_LT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Paskutinį kartą atnaujino"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Pēdējo reizi atjaunoja"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nosaukums"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Последно ажурирање од"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Име"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последна промена на"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Подеси на нацрт"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Сүүлийн засвар хийсэн"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Нэр"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Ноороглох"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Sist oppdatert av"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Navn"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist oppdatert "
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Sett som utkast"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Sist oppdatert av"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist endret den"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Drøfting"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Laatst bijgewerkt door"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Naam"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Zet op concept"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Laatst bijgewerkt door"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Naam:"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst Aangepast op"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Terugzetten naar Concept"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/"
|
||||
"23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Laatst bijgewerkt door"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,3 +824,6 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
|
||||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst gewijzigd op"
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Ostatnio modyfikowane przez"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr "Nazwa"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -824,6 +825,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Uprawnienia"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Atualizado pela última vez por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Nome"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificado a última vez por"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Definir como rascunho"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
|
||||
"23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "Identificação"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Última atualização por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nome"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última atualização em"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Definir como Provisório"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/"
|
||||
"23907/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Atualizado pela última vez por"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modelo"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nome"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificação Em"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Definir como rascunho"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Ultima actualizare făcută de"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Nume"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima actualizare în"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Seteaza ca Ciorna"
|
||||
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Последний раз обновлено"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Модель"
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr "Название"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Naposledy upravoval"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Meno"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,5 +823,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Posledná modifikácia"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Bezpečnosť"
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (kopija)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Dostop %s"
|
||||
|
||||
|
|
@ -132,9 +129,7 @@ msgstr "Stolpec"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -203,15 +198,15 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"Tu določite omejitve dostopa do podatkov.\n"
|
||||
" Pazite, da uporabite predpono 'x_' v nazivu polja. Globalno 'ir.rule' "
|
||||
"pravilo bo ustvarjeno. Tipično pravilo za strukturirano podjetje je "
|
||||
"naprimer \n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
|
|
@ -226,6 +221,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
|
|
@ -321,6 +317,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -334,10 +331,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -380,12 +383,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -398,11 +395,6 @@ msgstr "Zadnji posodobil"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
#, fuzzy
|
||||
|
|
@ -436,6 +428,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -453,7 +446,6 @@ msgstr "Naziv"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -496,16 +488,16 @@ msgstr "Odoo dejanje"
|
|||
msgid "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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -531,16 +523,10 @@ msgstr "Odoo pravilo"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -566,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -588,7 +573,6 @@ msgstr "Osveži materializirani prikaz"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Osveži materializirani prikaz %s"
|
||||
|
||||
|
|
@ -605,7 +589,6 @@ msgstr "Definicija pravila"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -704,11 +687,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -758,6 +736,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -778,6 +761,16 @@ msgstr ""
|
|||
"Posodobi dostope modela. Potrebno, če ste spremenili seznam skupin po "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -793,20 +786,29 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -856,8 +858,8 @@ msgstr "selection"
|
|||
msgid "sequence"
|
||||
msgstr "sequence"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Uporabniški vmesnik"
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Nastavi kot osnutek"
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr ""
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Ime"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "Zadnja izmjena"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr "Ime:"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -824,6 +825,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Bezbednost"
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: sv\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr "%(model_name)s Access %(full_name)s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (kopia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Åtkomst %s"
|
||||
|
||||
|
|
@ -98,8 +95,8 @@ msgid ""
|
|||
"be created."
|
||||
msgstr ""
|
||||
"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 "
|
||||
"som är relaterad till SQL-rapporten kommer att skapas."
|
||||
"användargränssnittet manuellt, skriver du över den överordnade menyn där "
|
||||
"menyn som är relaterad till SQL-rapporten kommer att skapas."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
|
||||
|
|
@ -115,8 +112,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Check this box if you want to create a 'group by' option in the search view"
|
||||
msgstr ""
|
||||
"Markera den här rutan om du vill skapa ett alternativ för \"gruppera efter\" "
|
||||
"i sökvyn"
|
||||
"Markera den här rutan om du vill skapa ett alternativ för 'gruppera efter' i "
|
||||
"sökvyn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -183,7 +178,7 @@ msgstr "Skapad den"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
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
|
||||
#: 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"
|
||||
" 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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
"Definiera här åtkomstbegränsning till data.\n"
|
||||
" Var noga med att använda fältnamn med prefixet \"x_\". En global \"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','=',"
|
||||
"False)]."
|
||||
" Var noga med att använda fältnamn med prefixet \"x_\". En global "
|
||||
"\"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','=',False)]."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
|
|
@ -272,7 +268,7 @@ msgstr "Följare"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr "Följare (Partners)"
|
||||
msgstr "Följare (Kontakter)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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."
|
||||
msgstr ""
|
||||
"För Odoo-fältet \"Many2one\".\n"
|
||||
" Komodell av fältet."
|
||||
" Ko-modell av fältet."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
" Lista med alternativ, specificerad som ett Python-uttryck som definierar en "
|
||||
"lista med (nyckel, etikett)-par. Till exempel: [('blue','Blue'), ('yellow', "
|
||||
"'Yellow')]"
|
||||
"'Yellow')]: [('blue','Blue'), ('yellow','Yellow')]"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: 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_ir_model_fields__id
|
||||
msgid "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."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -392,12 +395,6 @@ msgstr ""
|
|||
"Den materialiserade vyn och all tidigare mappning som realiserats med "
|
||||
"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
|
||||
#: 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
|
||||
|
|
@ -410,11 +407,6 @@ msgstr "Senast uppdaterad av"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -447,6 +439,7 @@ msgstr "Minimum"
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Modell"
|
||||
|
||||
|
|
@ -464,7 +457,6 @@ msgstr "Namn"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -507,16 +499,16 @@ msgstr "Odoo-åtgärd"
|
|||
msgid "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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
|
|
@ -542,16 +534,10 @@ msgstr "Odoo Regel"
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -572,12 +558,11 @@ msgstr "Valfritt (visas)"
|
|||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__parent_menu_id
|
||||
msgid "Parent Odoo Menu"
|
||||
msgstr "Förälder Odoo Meny"
|
||||
msgstr "Överliggande Odoomeny"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Uppdatera materialiserad vy %s"
|
||||
|
||||
|
|
@ -616,7 +600,6 @@ msgstr "Definition av regel"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -720,11 +703,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -780,6 +758,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -799,10 +782,20 @@ msgstr ""
|
|||
"Uppdatera modellåtkomst. Krävs om du har ändrat grupplistan efter att du har "
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr "Visa namn"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr "Du kan inte skapa index på icke-materialiserade vyer"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean
|
||||
|
|
@ -879,21 +878,32 @@ msgstr "urval"
|
|||
msgid "sequence"
|
||||
msgstr "sekvens"
|
||||
|
||||
#~ msgid "UI Parameters"
|
||||
#~ msgstr "Parametrar för användargränssnitt"
|
||||
|
||||
#~ msgid "User Interface"
|
||||
#~ msgstr "Användargränssnitt"
|
||||
#~ msgid "SMS Delivery error"
|
||||
#~ msgstr "Fel vid leverans av SMS"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
|
||||
#~ msgstr ""
|
||||
#~ "Kommaseparerad text. Möjliga värden: \"graf\", \"pivot\" eller \"träd\""
|
||||
|
||||
#~ msgid "Odoo Tree View"
|
||||
#~ msgstr "Odoo trädvy"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Only graph, pivot or tree views are supported"
|
||||
#~ 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"
|
||||
#~ msgstr "Sätt till preliminär"
|
||||
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "อัพเดทครั้งสุดท้ายโดย"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "ชื่อ"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "กำหนดให้เป็นแบบร่าง"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Son güncelleyen"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Model"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Adı"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Son değişiklik"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "Taslak Olarak Ayarlayın"
|
||||
|
||||
|
|
|
|||
|
|
@ -23,21 +23,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -126,9 +123,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -197,8 +192,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -214,6 +209,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
|
|
@ -305,6 +301,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
|
|
@ -318,10 +315,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -364,12 +367,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -382,11 +379,6 @@ msgstr "En son güncelleyen "
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -419,6 +411,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "Tip"
|
||||
|
||||
|
|
@ -436,7 +429,6 @@ msgstr "Ad"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -478,13 +470,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -512,16 +504,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -547,7 +533,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -569,7 +554,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,7 +570,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -677,11 +660,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -729,6 +707,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -746,6 +729,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -761,20 +754,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -824,6 +825,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "En son güncelleme tarihi"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Güvenlik"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Востаннє оновив"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Name"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,5 +824,8 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Остання модифікація"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Безпека"
|
||||
|
|
|
|||
|
|
@ -21,21 +21,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -124,9 +121,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -195,8 +190,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -212,6 +207,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
|
|
@ -303,6 +299,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -316,10 +313,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -362,12 +365,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -380,11 +377,6 @@ msgstr "Last Updated by"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -417,6 +409,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -434,7 +427,6 @@ msgstr "Tên"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -476,13 +468,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -510,16 +502,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -545,7 +531,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -567,7 +552,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -584,7 +568,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -675,11 +658,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -727,6 +705,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -744,6 +727,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -759,20 +752,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -822,6 +823,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sửa lần cuối vào"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Bảo mật"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ msgstr ""
|
|||
"POT-Creation-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"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
|
||||
"teams/23907/vi_VN/)\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/"
|
||||
"23907/vi_VN/)\n"
|
||||
"Language: vi_VN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "Cập nhật lần cuối bởi"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "Tên"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "最后更新者"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr "模型"
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "名称"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最后修改时间"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "设为草稿"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,21 +22,18 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -125,9 +122,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -196,8 +191,8 @@ msgid ""
|
|||
"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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -213,6 +208,7 @@ msgstr ""
|
|||
#. 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_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
|
|
@ -304,6 +300,7 @@ msgstr ""
|
|||
#. 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_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
|
|
@ -317,10 +314,16 @@ msgstr ""
|
|||
msgid "If checked, some messages have a delivery error."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
|
|
@ -363,12 +366,6 @@ msgid ""
|
|||
"with the columns"
|
||||
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
|
||||
#: 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
|
||||
|
|
@ -381,11 +378,6 @@ msgstr "最後更新:"
|
|||
msgid "Last Updated on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
|
@ -418,6 +410,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -435,7 +428,6 @@ msgstr "名稱"
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No Column was found.\n"
|
||||
"Columns name should be prefixed by 'x_'."
|
||||
|
|
@ -477,13 +469,13 @@ msgid "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"
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id
|
||||
msgid "Odoo Graph View"
|
||||
#: 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
|
||||
|
|
@ -511,16 +503,10 @@ msgstr ""
|
|||
msgid "Odoo Search View"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot, tree or form views are supported"
|
||||
msgid "Only graph, pivot or list views are supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
|
@ -546,7 +532,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -568,7 +553,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,7 +569,6 @@ msgstr ""
|
|||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
|
|
@ -676,11 +659,6 @@ msgstr ""
|
|||
msgid "Sum"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
|
|
@ -728,6 +706,11 @@ msgstr ""
|
|||
msgid "UI Instances"
|
||||
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
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
|
|
@ -745,6 +728,16 @@ msgid ""
|
|||
"created the model"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
|
@ -760,20 +753,28 @@ msgstr ""
|
|||
msgid "Views, Action and Menu Created"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -823,6 +824,9 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最後修改:"
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "設置為草稿"
|
||||
|
||||
|
|
|
|||
|
|
@ -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())
|
||||
|
|
@ -3,13 +3,14 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
import logging
|
||||
from datetime import datetime, timedelta
|
||||
from datetime import datetime, timedelta, timezone
|
||||
|
||||
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.tools import sql, table_columns
|
||||
from odoo.tools import sql
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
|
@ -44,30 +45,25 @@ class BiSQLView(models.Model):
|
|||
|
||||
view_name = fields.Char(
|
||||
compute="_compute_view_name",
|
||||
readonly=True,
|
||||
store=True,
|
||||
help="Full name of the SQL view",
|
||||
)
|
||||
|
||||
model_name = fields.Char(
|
||||
compute="_compute_model_name",
|
||||
readonly=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(
|
||||
string="Is Materialized View",
|
||||
default=True,
|
||||
readonly=True,
|
||||
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
|
||||
)
|
||||
|
||||
materialized_text = fields.Char(compute="_compute_materialized_text", store=True)
|
||||
|
||||
size = fields.Char(
|
||||
string="Database Size",
|
||||
readonly=True,
|
||||
help="Size of the materialized view and its indexes",
|
||||
)
|
||||
|
||||
|
|
@ -75,11 +71,8 @@ class BiSQLView(models.Model):
|
|||
|
||||
view_order = fields.Char(
|
||||
required=True,
|
||||
readonly=False,
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
default="pivot,graph,tree",
|
||||
help="Comma-separated text. Possible values:"
|
||||
' "graph", "pivot", "tree" or "form"',
|
||||
default="pivot,graph,list",
|
||||
help='Comma-separated text. Possible values: "graph", "pivot" or "list"',
|
||||
)
|
||||
|
||||
query = fields.Text(
|
||||
|
|
@ -88,34 +81,26 @@ class BiSQLView(models.Model):
|
|||
" SQL function (like EXTRACT, ...);\n"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * 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(
|
||||
string="Extra Rule Definition",
|
||||
default="[]",
|
||||
readonly=True,
|
||||
help="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"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),"
|
||||
"('x_company_id','=',False)].",
|
||||
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
|
||||
)
|
||||
|
||||
computed_action_context = fields.Text(compute="_compute_computed_action_context")
|
||||
|
||||
action_context = fields.Text(
|
||||
default="{}",
|
||||
readonly=True,
|
||||
help="Define here a context that will be used"
|
||||
" 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(
|
||||
|
|
@ -124,80 +109,53 @@ class BiSQLView(models.Model):
|
|||
inverse_name="bi_sql_view_id",
|
||||
)
|
||||
|
||||
model_id = fields.Many2one(
|
||||
string="Odoo Model", comodel_name="ir.model", readonly=True
|
||||
)
|
||||
|
||||
model_id = fields.Many2one(string="Odoo Model", comodel_name="ir.model")
|
||||
# UI related fields
|
||||
# 1. Editable fields, which can be set by the user (optional) before
|
||||
# creating the UI elements
|
||||
|
||||
@api.model
|
||||
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(
|
||||
string="Parent Odoo Menu",
|
||||
comodel_name="ir.ui.menu",
|
||||
required=True,
|
||||
readonly=True,
|
||||
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 "
|
||||
"UI, you're overwriting the parent menu on which the menu related to "
|
||||
"the SQL report will be created.",
|
||||
)
|
||||
|
||||
# 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(
|
||||
string="Odoo Form View", comodel_name="ir.ui.view", readonly=True
|
||||
)
|
||||
graph_view_id = fields.Many2one(string="Odoo Graph View", comodel_name="ir.ui.view")
|
||||
|
||||
tree_view_id = fields.Many2one(
|
||||
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
|
||||
)
|
||||
pivot_view_id = fields.Many2one(string="Odoo Pivot View", comodel_name="ir.ui.view")
|
||||
|
||||
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(
|
||||
string="Odoo Action", comodel_name="ir.actions.act_window", readonly=True
|
||||
string="Odoo Action", comodel_name="ir.actions.act_window"
|
||||
)
|
||||
|
||||
menu_id = fields.Many2one(
|
||||
string="Odoo Menu", comodel_name="ir.ui.menu", readonly=True
|
||||
)
|
||||
menu_id = fields.Many2one(string="Odoo Menu", comodel_name="ir.ui.menu")
|
||||
|
||||
cron_id = fields.Many2one(
|
||||
string="Odoo Cron",
|
||||
comodel_name="ir.cron",
|
||||
readonly=True,
|
||||
help="Cron Task that will refresh the materialized view",
|
||||
ondelete="cascade",
|
||||
copy=False,
|
||||
)
|
||||
|
||||
rule_id = fields.Many2one(string="Odoo Rule", comodel_name="ir.rule", readonly=True)
|
||||
|
||||
group_ids = fields.Many2many(
|
||||
comodel_name="res.groups",
|
||||
readonly=True,
|
||||
states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]},
|
||||
)
|
||||
rule_id = fields.Many2one(string="Odoo Rule", comodel_name="ir.rule")
|
||||
|
||||
sequence = fields.Integer(string="sequence")
|
||||
|
||||
|
|
@ -207,7 +165,7 @@ class BiSQLView(models.Model):
|
|||
for rec in self.filtered(lambda x: not x.is_materialized):
|
||||
if rec.bi_sql_view_field_ids.filtered(lambda x: x.is_index):
|
||||
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")
|
||||
|
|
@ -215,9 +173,9 @@ class BiSQLView(models.Model):
|
|||
for rec in self:
|
||||
if rec.view_order:
|
||||
for vtype in rec.view_order.split(","):
|
||||
if vtype not in ("graph", "pivot", "tree", "form"):
|
||||
if vtype not in ("graph", "pivot", "list"):
|
||||
raise UserError(
|
||||
_("Only graph, pivot, tree or form views are supported")
|
||||
self.env._("Only graph, pivot or list views are supported")
|
||||
)
|
||||
|
||||
# Compute Section
|
||||
|
|
@ -261,18 +219,12 @@ class BiSQLView(models.Model):
|
|||
@api.depends("technical_name")
|
||||
def _compute_view_name(self):
|
||||
for sql_view in self:
|
||||
sql_view.view_name = "{}{}".format(
|
||||
sql_view._sql_prefix,
|
||||
sql_view.technical_name,
|
||||
)
|
||||
sql_view.view_name = f"{sql_view._sql_prefix}{sql_view.technical_name}"
|
||||
|
||||
@api.depends("technical_name")
|
||||
def _compute_model_name(self):
|
||||
for sql_view in self:
|
||||
sql_view.model_name = "{}{}".format(
|
||||
sql_view._model_prefix,
|
||||
sql_view.technical_name,
|
||||
)
|
||||
sql_view.model_name = f"{sql_view._model_prefix}{sql_view.technical_name}"
|
||||
|
||||
# Overload Section
|
||||
def write(self, vals):
|
||||
|
|
@ -282,21 +234,21 @@ class BiSQLView(models.Model):
|
|||
rec.menu_id.sequence = rec.sequence
|
||||
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):
|
||||
raise UserError(
|
||||
_(
|
||||
"You can only unlink draft views."
|
||||
self.env._(
|
||||
"You can only unlink draft views. "
|
||||
"If you want to delete them, first set them to draft."
|
||||
)
|
||||
)
|
||||
return super().unlink()
|
||||
|
||||
def copy(self, default=None):
|
||||
self.ensure_one()
|
||||
default = dict(default or {})
|
||||
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:
|
||||
default["technical_name"] = f"{self.technical_name}_copy"
|
||||
return super().copy(default=default)
|
||||
|
|
@ -310,8 +262,10 @@ class BiSQLView(models.Model):
|
|||
)
|
||||
if bad_fields:
|
||||
raise ValidationError(
|
||||
_("Please set related models on the following fields %s")
|
||||
% ",".join(bad_fields.mapped("name"))
|
||||
self.env._(
|
||||
"Please set related models on the following fields %s",
|
||||
",".join(bad_fields.mapped("name")),
|
||||
)
|
||||
)
|
||||
# Create ORM and access
|
||||
sql_view._create_model_and_fields()
|
||||
|
|
@ -332,7 +286,6 @@ class BiSQLView(models.Model):
|
|||
|
||||
def button_reset_to_model_valid(self):
|
||||
views = self.filtered(lambda x: x.state == "ui_valid")
|
||||
views.mapped("form_view_id").unlink()
|
||||
views.mapped("tree_view_id").unlink()
|
||||
views.mapped("graph_view_id").unlink()
|
||||
views.mapped("pivot_view_id").unlink()
|
||||
|
|
@ -360,7 +313,6 @@ class BiSQLView(models.Model):
|
|||
return super().button_set_draft()
|
||||
|
||||
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.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:
|
||||
res.append(
|
||||
{
|
||||
"name": _("%(model_name)s Access %(full_name)s")
|
||||
% {"model_name": self.model_name, "full_name": group.full_name},
|
||||
"name": self.env._(
|
||||
"%(model_name)s Access %(full_name)s",
|
||||
model_name=self.model_name,
|
||||
full_name=group.full_name,
|
||||
),
|
||||
"model_id": self.model_id.id,
|
||||
"group_id": group.id,
|
||||
"perm_read": True,
|
||||
|
|
@ -429,14 +384,13 @@ class BiSQLView(models.Model):
|
|||
def _prepare_cron(self):
|
||||
now = datetime.now()
|
||||
return {
|
||||
"name": _("Refresh Materialized View %s") % self.view_name,
|
||||
"user_id": SUPERUSER_ID,
|
||||
"name": self.env._("Refresh Materialized View %s", self.view_name),
|
||||
"user_id": api.SUPERUSER_ID,
|
||||
"model_id": self.env["ir.model"]
|
||||
.search([("model", "=", self._name)], limit=1)
|
||||
.id,
|
||||
"state": "code",
|
||||
"code": "model._refresh_materialized_view_cron(%s)" % self.ids,
|
||||
"numbercall": -1,
|
||||
"code": f"model._refresh_materialized_view_cron({self.ids})",
|
||||
"interval_number": 1,
|
||||
"interval_type": "days",
|
||||
"nextcall": now + timedelta(days=1),
|
||||
|
|
@ -446,34 +400,21 @@ class BiSQLView(models.Model):
|
|||
def _prepare_rule(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": _("Access %s") % self.name,
|
||||
"name": self.env._("Access %s", self.name),
|
||||
"model_id": self.model_id.id,
|
||||
"domain_force": self.domain_force,
|
||||
"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):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"type": "tree",
|
||||
"type": "list",
|
||||
"model": self.model_id.model,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<tree string="Analysis">{}"""
|
||||
"""</tree>""".format(
|
||||
"""<list name="Analysis">{}"""
|
||||
"""</list>""".format(
|
||||
"".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,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<search string="Analysis">{}"""
|
||||
"""<group expand="1" string="Group By">{}</group>"""
|
||||
"""<group>{}</group>"""
|
||||
"""</search>""".format(
|
||||
"".join(
|
||||
[x._prepare_search_field() for x in self.bi_sql_view_field_ids]
|
||||
|
|
@ -530,9 +471,7 @@ class BiSQLView(models.Model):
|
|||
self.ensure_one()
|
||||
view_mode = self.view_order
|
||||
first_view = view_mode.split(",")[0]
|
||||
if first_view == "form":
|
||||
view_id = self.form_view_id.id
|
||||
if first_view == "tree":
|
||||
if first_view == "list":
|
||||
view_id = self.tree_view_id.id
|
||||
elif first_view == "pivot":
|
||||
view_id = self.pivot_view_id.id
|
||||
|
|
@ -557,7 +496,7 @@ class BiSQLView(models.Model):
|
|||
return self.name
|
||||
return "{} ({})".format(
|
||||
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):
|
||||
|
|
@ -565,20 +504,22 @@ class BiSQLView(models.Model):
|
|||
return {
|
||||
"name": self.name,
|
||||
"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,
|
||||
}
|
||||
|
||||
# Custom Section
|
||||
def _log_execute(self, req):
|
||||
_logger.info("Executing SQL Request %s ..." % req)
|
||||
_logger.info(f"Executing SQL Request {req} ...")
|
||||
self.env.cr.execute(req)
|
||||
|
||||
def _drop_view(self):
|
||||
for sql_view in self:
|
||||
self._log_execute(
|
||||
"DROP %s VIEW IF EXISTS %s"
|
||||
% (sql_view.materialized_text, sql_view.view_name)
|
||||
SQL("DROP {materialized_text} VIEW IF EXISTS {view_name}").format(
|
||||
materialized_text=SQL(sql_view.materialized_text),
|
||||
view_name=Identifier(sql_view.view_name),
|
||||
)
|
||||
)
|
||||
sql_view.size = False
|
||||
|
||||
|
|
@ -590,15 +531,13 @@ class BiSQLView(models.Model):
|
|||
sql_view._refresh_size()
|
||||
except ProgrammingError as e:
|
||||
raise UserError(
|
||||
_(
|
||||
self.env._(
|
||||
"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
|
||||
|
||||
def _create_index(self):
|
||||
|
|
@ -607,12 +546,11 @@ class BiSQLView(models.Model):
|
|||
lambda x: x.is_index is True
|
||||
):
|
||||
self._log_execute(
|
||||
"CREATE INDEX %(index_name)s ON %(view_name)s (%(field_name)s);"
|
||||
% {
|
||||
"index_name": sql_field.index_name,
|
||||
"view_name": sql_view.view_name,
|
||||
"field_name": sql_field.name,
|
||||
}
|
||||
SQL("CREATE INDEX {index_name} ON {view_name} ({name});").format(
|
||||
index_name=SQL(sql_field.index_name),
|
||||
view_name=Identifier(sql_view.view_name),
|
||||
name=Identifier(sql_field.name),
|
||||
)
|
||||
)
|
||||
|
||||
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.rule_id = self.env["ir.rule"].create(self._prepare_rule()).id
|
||||
# Drop table, created by the ORM
|
||||
if sql.table_exists(self._cr, sql_view.view_name):
|
||||
req = "DROP TABLE %s" % sql_view.view_name
|
||||
if sql.table_exists(self.env.cr, sql_view.view_name):
|
||||
req = SQL("DROP TABLE {}").format(Identifier(sql_view.view_name))
|
||||
self._log_execute(req)
|
||||
|
||||
def _create_model_access(self):
|
||||
|
|
@ -645,28 +583,29 @@ class BiSQLView(models.Model):
|
|||
|
||||
def _hook_executed_request(self):
|
||||
self.ensure_one()
|
||||
req = (
|
||||
req = SQL(
|
||||
"""
|
||||
SELECT attnum,
|
||||
attname AS column,
|
||||
format_type(atttypid, atttypmod) AS type
|
||||
FROM pg_attribute
|
||||
WHERE attrelid = '%s'::regclass
|
||||
WHERE attrelid = '{view_name}'::regclass
|
||||
AND NOT attisdropped
|
||||
AND attnum > 0
|
||||
ORDER BY attnum;"""
|
||||
% self.view_name
|
||||
)
|
||||
).format(view_name=Identifier(self.view_name))
|
||||
self._log_execute(req)
|
||||
return self.env.cr.fetchall()
|
||||
|
||||
def _prepare_request_check_execution(self):
|
||||
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):
|
||||
self.ensure_one()
|
||||
query = (
|
||||
query = SQL(
|
||||
"""
|
||||
SELECT
|
||||
CAST(row_number() OVER () as integer) AS id,
|
||||
|
|
@ -676,14 +615,13 @@ class BiSQLView(models.Model):
|
|||
CAST(Null as integer) as write_uid,
|
||||
my_query.*
|
||||
FROM
|
||||
(%s) as my_query
|
||||
({}) as my_query
|
||||
"""
|
||||
% self.query
|
||||
)
|
||||
return "CREATE {} VIEW {} AS ({});".format(
|
||||
self.materialized_text,
|
||||
self.view_name,
|
||||
query,
|
||||
).format(SQL(self.query))
|
||||
return SQL("CREATE {materialized_text} VIEW {view_name} AS ({query});").format(
|
||||
materialized_text=SQL(self.materialized_text),
|
||||
view_name=Identifier(self.view_name),
|
||||
query=query,
|
||||
)
|
||||
|
||||
def _check_execution(self):
|
||||
|
|
@ -698,7 +636,7 @@ class BiSQLView(models.Model):
|
|||
field_ids = []
|
||||
for column in columns:
|
||||
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:
|
||||
# Update existing field
|
||||
|
|
@ -723,7 +661,9 @@ class BiSQLView(models.Model):
|
|||
|
||||
if not self.bi_sql_view_field_ids:
|
||||
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
|
||||
|
|
@ -741,23 +681,20 @@ class BiSQLView(models.Model):
|
|||
|
||||
def _refresh_materialized_view(self):
|
||||
for sql_view in self.filtered(lambda x: x.is_materialized):
|
||||
req = "REFRESH {} VIEW {}".format(
|
||||
sql_view.materialized_text,
|
||||
sql_view.view_name,
|
||||
)
|
||||
req = f"REFRESH {sql_view.materialized_text} VIEW {sql_view.view_name}"
|
||||
self._log_execute(req)
|
||||
sql_view._refresh_size()
|
||||
if sql_view.action_id:
|
||||
# Alter name of the action, to display last refresh
|
||||
# datetime of the materialized view
|
||||
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()
|
||||
|
||||
def _refresh_size(self):
|
||||
for sql_view in self:
|
||||
req = "SELECT pg_size_pretty(pg_total_relation_size('%s'));" % (
|
||||
sql_view.view_name
|
||||
req = SQL("SELECT pg_size_pretty(pg_total_relation_size('{}'));").format(
|
||||
Identifier(sql_view.view_name)
|
||||
)
|
||||
self._log_execute(req)
|
||||
sql_view.size = self.env.cr.fetchone()[0]
|
||||
|
|
@ -767,7 +704,7 @@ class BiSQLView(models.Model):
|
|||
# early on install / startup - particularly problematic during upgrade
|
||||
if model._name.startswith(
|
||||
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 -
|
||||
# we have no control over the order that fields are defined!
|
||||
# We are not concerned about user security rules.
|
||||
|
|
@ -794,7 +731,7 @@ WHERE
|
|||
and sql_field[1] in ("integer", "float")
|
||||
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):
|
||||
self.button_validate_sql_expression()
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
import re
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo import api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
|
|
@ -76,34 +76,29 @@ class BiSQLViewField(models.Model):
|
|||
help="Check this box if you want to create"
|
||||
" an index on that field. This is recommended for searchable and"
|
||||
" groupable fields, to reduce duration",
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
is_group_by = fields.Boolean(
|
||||
string="Is Group by",
|
||||
help="Check this box if you want to create"
|
||||
" a 'group by' option in the search view",
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
index_name = fields.Char(compute="_compute_index_name")
|
||||
|
||||
graph_type = fields.Selection(
|
||||
selection=_GRAPH_TYPE_SELECTION,
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
tree_visibility = fields.Selection(
|
||||
selection=_TREE_VISIBILITY_SELECTION,
|
||||
default="available",
|
||||
required=True,
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
field_description = fields.Char(
|
||||
help="This will be used as the name of the Odoo field, displayed for users",
|
||||
required=True,
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
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"
|
||||
" create a new field. If empty, this field will not be displayed"
|
||||
" neither available for search or group by function",
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
selection = fields.Text(
|
||||
|
|
@ -123,28 +117,24 @@ class BiSQLViewField(models.Model):
|
|||
" List of options, specified as a Python expression defining a list of"
|
||||
" (key, label) pairs. For example:"
|
||||
" [('blue','Blue'), ('yellow','Yellow')]",
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
many2one_model_id = fields.Many2one(
|
||||
comodel_name="ir.model",
|
||||
string="Model",
|
||||
help="For 'Many2one' Odoo field.\n" " Comodel of the field.",
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
help="For 'Many2one' Odoo field.\n Comodel of the field.",
|
||||
)
|
||||
|
||||
group_operator = fields.Selection(
|
||||
selection=_GROUP_OPERATOR_SELECTION,
|
||||
help="By default, Odoo will sum the values when grouping. If you wish "
|
||||
"to alter the behaviour, choose an alternate Group Operator",
|
||||
states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
field_context = fields.Char(
|
||||
default="{}",
|
||||
help="Context value that will be inserted for this field in all the views."
|
||||
" Important note : please write a context with single quote.",
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
)
|
||||
|
||||
# Constrains Section
|
||||
|
|
@ -153,15 +143,14 @@ class BiSQLViewField(models.Model):
|
|||
for rec in self.filtered(lambda x: x.is_index):
|
||||
if not rec.bi_sql_view_id.is_materialized:
|
||||
raise UserError(
|
||||
_("You can not create indexes on non materialized views")
|
||||
self.env._("You can not create indexes on non materialized views")
|
||||
)
|
||||
|
||||
# Compute Section
|
||||
def _compute_index_name(self):
|
||||
for sql_field in self:
|
||||
sql_field.index_name = "{}_{}".format(
|
||||
sql_field.bi_sql_view_id.view_name,
|
||||
sql_field.name,
|
||||
sql_field.index_name = (
|
||||
f"{sql_field.bi_sql_view_id.view_name}_{sql_field.name}"
|
||||
)
|
||||
|
||||
# Overload Section
|
||||
|
|
@ -202,15 +191,15 @@ class BiSQLViewField(models.Model):
|
|||
)
|
||||
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")):
|
||||
raise UserError(
|
||||
_(
|
||||
self.env._(
|
||||
"Impossible to delete fields if the view"
|
||||
" is in the state 'Model Valid' or 'UI Valid'."
|
||||
)
|
||||
)
|
||||
return super().unlink()
|
||||
|
||||
# Custom Section
|
||||
@api.model
|
||||
|
|
@ -219,8 +208,8 @@ class BiSQLViewField(models.Model):
|
|||
field name. Sample :
|
||||
{'account_id': 'account.account'; 'product_id': 'product.product'}
|
||||
"""
|
||||
relation_fields = self.env["ir.model.fields"].search(
|
||||
[("ttype", "=", "many2one")]
|
||||
relation_fields = (
|
||||
self.env["ir.model.fields"].sudo().search([("ttype", "=", "many2one")])
|
||||
)
|
||||
res = {}
|
||||
keys_to_pop = []
|
||||
|
|
@ -249,30 +238,20 @@ class BiSQLViewField(models.Model):
|
|||
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):
|
||||
self.ensure_one()
|
||||
if self.tree_visibility == "unavailable":
|
||||
return ""
|
||||
visibility_text = ""
|
||||
if self.tree_visibility == "invisible":
|
||||
visibility_text = 'invisible="1"'
|
||||
visibility_text = 'column_invisible="1"'
|
||||
elif self.tree_visibility == "optional_hide":
|
||||
visibility_text = 'optional="hide"'
|
||||
elif self.tree_visibility == "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 (
|
||||
f"""<field name="{self.name}" {visibility_text} {operator_text}"""
|
||||
f"""<field name="{self.name}" {visibility_text}"""
|
||||
f""" context="{self.field_context}"/>\n"""
|
||||
)
|
||||
|
||||
|
|
@ -295,26 +274,14 @@ class BiSQLViewField(models.Model):
|
|||
|
||||
def _prepare_search_field(self):
|
||||
self.ensure_one()
|
||||
return """<field name="{}" context="{}"/>\n""".format(
|
||||
self.name,
|
||||
self.field_context,
|
||||
)
|
||||
return f"""<field name="{self.name}" context="{self.field_context}"/>\n"""
|
||||
|
||||
def _prepare_search_filter_field(self):
|
||||
self.ensure_one()
|
||||
group_by_filter = ""
|
||||
field_filter = ""
|
||||
if self.is_group_by:
|
||||
group_by_filter = (
|
||||
if not self.is_group_by:
|
||||
return ""
|
||||
return (
|
||||
f"""<filter name="group_by_{self.name}" """
|
||||
f"""string="{self.field_description}" """
|
||||
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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
- Go to Dashboard / Configuration / SQL Views
|
||||
|
||||
- tip your SQL request
|
||||
|
||||

|
||||
|
||||
- Select the group(s) that could have access to the view
|
||||
|
||||

|
||||
|
||||
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.
|
||||
|
||||

|
||||
|
||||
- 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)
|
||||
|
||||

|
||||
|
||||
- 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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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>
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1 @@
|
|||
The migration of this module from 17.0 to 18.0 was financially supported by Camptocamp.
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
To use this module, you need to:
|
||||
|
||||
1. Go to 'Dashboards \> SQL Reports'
|
||||
2. Select the desired report
|
||||
|
||||
> 
|
||||
|
||||
- You can switch to 'Graph' or 'tree' views as any report.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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_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
|
||||
|
|
|
|||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>BI SQL Editor</title>
|
||||
<title>README.rst</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
|
|
@ -360,47 +360,57 @@ ul.auto-toc {
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="bi-sql-editor">
|
||||
<h1 class="title">BI SQL Editor</h1>
|
||||
<div class="document">
|
||||
|
||||
|
||||
<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 !!
|
||||
!! 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&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&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
|
||||
of extra custom reports.
|
||||
It allows user to write a custom SQL request. (Generally, admin users)</p>
|
||||
<p>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.</p>
|
||||
<p>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).</p>
|
||||
of extra custom reports. It allows user to write a custom SQL request.
|
||||
(Generally, admin users)</p>
|
||||
<p>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.</p>
|
||||
<p>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).</p>
|
||||
<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">
|
||||
<h1>Warning</h1>
|
||||
<p>This module is intended for technician people in a company and for Odoo integrators.</p>
|
||||
<h2>Warning</h2>
|
||||
<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>If you don’t have such skills, do not try to use this module specially on a production
|
||||
environment.</p>
|
||||
<p>If you don’t have such skills, do not try to use this module specially
|
||||
on a production environment.</p>
|
||||
</div>
|
||||
<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>
|
||||
<ul class="simple">
|
||||
<li>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</li>
|
||||
<li>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</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>
|
||||
<li>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</li>
|
||||
<li>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</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>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<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="#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="#credits" id="toc-entry-4">Credits</a><ul>
|
||||
<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>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<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>
|
||||
<li><p class="first">Go to Dashboard / Configuration / SQL Views</p>
|
||||
</li>
|
||||
<li><p class="first">tip your SQL request</p>
|
||||
<div class="figure">
|
||||
<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>
|
||||
<p><img alt="image1" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/01_sql_request.png" /></p>
|
||||
</li>
|
||||
<li><p class="first">Select the group(s) that could have access to the view</p>
|
||||
<div class="figure">
|
||||
<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>
|
||||
<p><img alt="image2" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/02_security_access.png" /></p>
|
||||
</li>
|
||||
</ul>
|
||||
<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>
|
||||
<li><p class="first">Click on the button ‘Validate SQL Expression’</p>
|
||||
</li>
|
||||
<li><p class="first">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.</p>
|
||||
<div class="figure">
|
||||
<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><p class="first">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.</p>
|
||||
<p><img alt="image3" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/03_field_mapping.png" /></p>
|
||||
</li>
|
||||
<li><p class="first">Click on the button ‘Create SQL elements’. (this step could
|
||||
take a while, if view is materialized)</p>
|
||||
<li><p class="first">Click on the button ‘Create SQL elements’. (this step could take a
|
||||
while, if view is materialized)</p>
|
||||
</li>
|
||||
<li><p class="first">If it’s a MATERIALIZED view:</p>
|
||||
<blockquote>
|
||||
<ul class="simple">
|
||||
<li>a cron task is created to refresh
|
||||
the view. You can so define the frequency of the refresh.</li>
|
||||
<li>a cron task is created to refresh the view. You can so define the
|
||||
frequency of the refresh.</li>
|
||||
<li>the size of view (and the indexes is displayed)</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<div class="figure">
|
||||
<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>
|
||||
<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>
|
||||
</li>
|
||||
<li><p class="first">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 <cite>SQL Views</cite> menu, which can be changed before creating the UI elements in
|
||||
order to have the report accessible from a different place within Odoo.</p>
|
||||
<li><p class="first">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 <tt class="docutils literal">SQL Views</tt> menu, which can be changed before
|
||||
creating the UI elements in order to have the report accessible from a
|
||||
different place within Odoo.</p>
|
||||
</li>
|
||||
<li><p class="first">Finally, click on ‘Create UI’, to create new menu, action, graph view and
|
||||
search view.</p>
|
||||
<li><p class="first">Finally, click on ‘Create UI’, to create new menu, action, graph view
|
||||
and search view.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<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>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to ‘Dashboards > SQL Reports’</li>
|
||||
<li>Select the desired report</li>
|
||||
</ol>
|
||||
<!-- -->
|
||||
<blockquote>
|
||||
<div class="figure">
|
||||
<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>
|
||||
<img alt="usage-image1" src="https://raw.githubusercontent.com/OCA/reporting-engine/19.0/bi_sql_editor/static/description/05_reporting_pivot.png" /></blockquote>
|
||||
<ul class="simple">
|
||||
<li>You can switch to ‘Graph’ or ‘tree’ views as any report.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<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>.
|
||||
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
|
||||
<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>
|
||||
</div>
|
||||
<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">
|
||||
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
|
||||
<h2>Authors</h2>
|
||||
<ul class="simple">
|
||||
<li>GRAP</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
|
||||
<h2>Contributors</h2>
|
||||
<ul class="simple">
|
||||
<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>David James, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li>
|
||||
<li>Guillem Casassas <<a class="reference external" href="mailto:guillem.casassas@forgeflow.com">guillem.casassas@forgeflow.com</a>></li>
|
||||
<li><dl class="first docutils">
|
||||
<dt>This module is highly inspired by the work of</dt>
|
||||
<dd><ul class="first last">
|
||||
<li>Onestein: (<a class="reference external" href="http://www.onestein.nl/">http://www.onestein.nl/</a>)
|
||||
Module: OCA/server-tools/bi_view_editor.
|
||||
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>
|
||||
<li>Anybox: (<a class="reference external" href="https://anybox.fr/">https://anybox.fr/</a>)
|
||||
Module : OCA/server-tools/materialized_sql_view
|
||||
link: <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>)
|
||||
Module: 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>
|
||||
<li>Guillem Casassas <a class="reference external" href="mailto:guillem.casassas@forgeflow.com">guillem.casassas@forgeflow.com</a></li>
|
||||
<li>Thien Vo <a class="reference external" href="mailto:thienvh@trobz.com">thienvh@trobz.com</a></li>
|
||||
<li>Baptiste P. <a class="reference external" href="mailto:baptiste@newlogic.com">baptiste@newlogic.com</a></li>
|
||||
<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>) Module:
|
||||
OCA/server-tools/bi_view_editor. 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>
|
||||
<li>Anybox: (<a class="reference external" href="https://anybox.fr/">https://anybox.fr/</a>) Module :
|
||||
OCA/server-tools/materialized_sql_view link:
|
||||
<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>) Module:
|
||||
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>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
</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">
|
||||
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
|
||||
<h2>Maintainers</h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org">
|
||||
<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>
|
||||
<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>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>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
||||
# 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.tests import tagged
|
||||
from odoo.tests.common import SingleTransactionCase
|
||||
from odoo.tests import new_test_user, tagged
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
@tagged("-at_install", "post_install")
|
||||
class TestBiSqlViewEditor(SingleTransactionCase):
|
||||
class TestBiSqlViewEditor(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
|
@ -17,15 +18,35 @@ class TestBiSqlViewEditor(SingleTransactionCase):
|
|||
"sql_request_abstract.group_sql_request_manager"
|
||||
)
|
||||
cls.group_bi_no_access = cls.env.ref("base.group_user")
|
||||
cls.demo_user = cls.env.ref("base.user_demo")
|
||||
cls.view = cls.env.ref("bi_sql_editor.partner_sql_view")
|
||||
cls.demo_user = new_test_user(
|
||||
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
|
||||
def _get_user(cls, access_level=False):
|
||||
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:
|
||||
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
|
||||
|
||||
def test_process_view(self):
|
||||
|
|
@ -58,6 +79,7 @@ class TestBiSqlViewEditor(SingleTransactionCase):
|
|||
copy_view.button_update_model_access()
|
||||
self.assertEqual(copy_view.has_group_changed, False)
|
||||
# Check that cron works correctly
|
||||
with self.enter_registry_test_mode():
|
||||
copy_view.cron_id.method_direct_trigger()
|
||||
|
||||
def test_copy(self):
|
||||
|
|
@ -67,13 +89,15 @@ class TestBiSqlViewEditor(SingleTransactionCase):
|
|||
def test_security(self):
|
||||
with self.assertRaises(AccessError):
|
||||
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(
|
||||
[("name", "=", self.view.name)]
|
||||
[("id", "=", self.view.id)]
|
||||
)
|
||||
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):
|
||||
|
|
@ -90,6 +114,7 @@ class TestBiSqlViewEditor(SingleTransactionCase):
|
|||
self.assertEqual(copy_view.state, "ui_valid")
|
||||
with self.assertRaises(UserError):
|
||||
copy_view.unlink()
|
||||
|
||||
copy_view.button_set_draft()
|
||||
self.assertNotEqual(
|
||||
copy_view.cron_id,
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
<record id="view_bi_sql_view_tree" model="ir.ui.view">
|
||||
<field name="model">bi.sql.view</field>
|
||||
<field
|
||||
|
|
@ -19,7 +18,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
</field>
|
||||
<field name="name" position="after">
|
||||
<field name="technical_name" />
|
||||
<field name="size" />
|
||||
<field name="size" readonly="1" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
|
@ -36,7 +35,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
<button
|
||||
name="button_reset_to_sql_valid"
|
||||
type="object"
|
||||
states="model_valid"
|
||||
invisible="state != 'model_valid'"
|
||||
string="Delete SQL Elements"
|
||||
groups="sql_request_abstract.group_sql_request_manager"
|
||||
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
|
||||
name="button_reset_to_model_valid"
|
||||
type="object"
|
||||
states="ui_valid"
|
||||
invisible="state != 'ui_valid'"
|
||||
string="Delete UI"
|
||||
groups="sql_request_abstract.group_sql_request_manager"
|
||||
/>
|
||||
<button
|
||||
name="button_create_sql_view_and_model"
|
||||
type="object"
|
||||
states="sql_valid"
|
||||
invisible="state != 'sql_valid'"
|
||||
string="Create SQL Elements"
|
||||
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"
|
||||
|
|
@ -61,13 +60,13 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
type="object"
|
||||
string="Update Model Access"
|
||||
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"
|
||||
/>
|
||||
<button
|
||||
name="button_create_ui"
|
||||
type="object"
|
||||
states="model_valid"
|
||||
invisible="state != 'model_valid'"
|
||||
string="Create UI"
|
||||
class="oe_highlight"
|
||||
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"
|
||||
type="object"
|
||||
string="Open View"
|
||||
states="ui_valid"
|
||||
invisible="state != 'ui_valid'"
|
||||
class="oe_highlight"
|
||||
/>
|
||||
<button
|
||||
|
|
@ -84,65 +83,85 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
type="object"
|
||||
string="Refresh"
|
||||
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>
|
||||
<group name="group_main_info" position="inside">
|
||||
<group>
|
||||
<field name="technical_name" readonly="state != 'draft'" />
|
||||
<field name="view_name" readonly="1" />
|
||||
<field name="view_order" readonly="state == 'ui_valid'" />
|
||||
<field
|
||||
name="technical_name"
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"
|
||||
name="is_materialized"
|
||||
readonly="state not in ('draft', 'sql_valid')"
|
||||
/>
|
||||
<field name="is_materialized" />
|
||||
<field
|
||||
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>
|
||||
<page name="page_sql" position="after">
|
||||
<page
|
||||
string="SQL Fields"
|
||||
attrs="{'invisible': [('state', '=', 'draft')]}"
|
||||
>
|
||||
<page string="SQL Fields" invisible="state == 'draft'">
|
||||
<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="name" />
|
||||
<field name="sql_type" />
|
||||
<field name="field_description" />
|
||||
<field name="ttype" />
|
||||
<field
|
||||
name="field_description"
|
||||
readonly="state in ('model_valid', 'ui_valid')"
|
||||
/>
|
||||
<field
|
||||
name="ttype"
|
||||
readonly="state in ('model_valid', 'ui_valid')"
|
||||
/>
|
||||
<field
|
||||
name="many2one_model_id"
|
||||
attrs="{
|
||||
'invisible': [('ttype', '!=', 'many2one')],
|
||||
'required': [('ttype', '=', 'many2one')],
|
||||
}"
|
||||
invisible="ttype != 'many2one'"
|
||||
required="ttype == 'many2one'"
|
||||
readonly="state in ('model_valid', 'ui_valid')"
|
||||
/>
|
||||
<field
|
||||
name="selection"
|
||||
attrs="{
|
||||
'invisible': [('ttype', '!=', 'selection')],
|
||||
'required': [('ttype', '=', 'selection')],
|
||||
}"
|
||||
invisible="ttype != 'selection'"
|
||||
required="ttype == 'selection'"
|
||||
readonly="state in ('model_valid', 'ui_valid')"
|
||||
/>
|
||||
<field
|
||||
name='group_operator'
|
||||
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 name="graph_type" />
|
||||
<field name="is_group_by" optional="hide" />
|
||||
<field name="tree_visibility" optional="hide" />
|
||||
<field name="field_context" optional="hide" />
|
||||
<field name="state" invisible="1" />
|
||||
</tree>
|
||||
<field
|
||||
name="is_index"
|
||||
optional="hide"
|
||||
readonly="state in ('model_valid', 'ui_valid')"
|
||||
/>
|
||||
<field name="graph_type" readonly="state == 'ui_valid'" />
|
||||
<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>
|
||||
</page>
|
||||
</page>
|
||||
|
|
@ -154,6 +173,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
colspan="2"
|
||||
widget="ace"
|
||||
options="{'mode': 'python'}"
|
||||
readonly="state not in ('draft', 'sql_valid')"
|
||||
/>
|
||||
</group>
|
||||
</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 string="Action Settings">
|
||||
<group string="Computed Context">
|
||||
<field
|
||||
name="computed_action_context"
|
||||
nolabel="1"
|
||||
colspan="2"
|
||||
/>
|
||||
<field name="computed_action_context" nolabel="1" colspan="2" />
|
||||
</group>
|
||||
<group string="Custom Context">
|
||||
<field
|
||||
name="action_context"
|
||||
readonly="state not in ('draft', 'sql_valid', 'model_valid')"
|
||||
nolabel="1"
|
||||
colspan="2"
|
||||
widget="ace"
|
||||
|
|
@ -186,31 +203,39 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|||
</page>
|
||||
<page string="Extras Information">
|
||||
<group>
|
||||
<group string="Technical Details">
|
||||
<field
|
||||
name="cron_id"
|
||||
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}"
|
||||
/>
|
||||
<field name="view_name" />
|
||||
<field name="model_name" />
|
||||
<group string="Model">
|
||||
<field name="model_name" readonly="1" />
|
||||
<field
|
||||
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 string="UI Instances">
|
||||
<field name="form_view_id" />
|
||||
<field name="tree_view_id" />
|
||||
<field name="graph_view_id" />
|
||||
<field name="pivot_view_id" />
|
||||
<field name="search_view_id" />
|
||||
<field name="action_id" />
|
||||
<field name="menu_id" />
|
||||
<field name="tree_view_id" readonly="1" />
|
||||
<field name="graph_view_id" readonly="1" />
|
||||
<field name="pivot_view_id" readonly="1" />
|
||||
<field name="search_view_id" readonly="1" />
|
||||
<field name="action_id" readonly="1" />
|
||||
<field name="menu_id" readonly="1" />
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
</page>
|
||||
|
||||
</page>
|
||||
<field name="group_ids" position="attributes">
|
||||
<attribute
|
||||
name="invisible"
|
||||
>state not in ('draft', 'sql_valid')</attribute>
|
||||
</field>
|
||||
</field>
|
||||
</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="type">ir.actions.act_window</field>
|
||||
<field name="res_model">bi.sql.view</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="view_mode">list,form</field>
|
||||
</record>
|
||||
|
||||
<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"
|
||||
sequence="5"
|
||||
/>
|
||||
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -11,23 +11,23 @@ Base report csv
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! 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
|
||||
:alt: Beta
|
||||
:alt: Production/Stable
|
||||
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/report_csv
|
||||
:target: https://github.com/OCA/reporting-engine/tree/19.0/report_csv
|
||||
:alt: OCA/reporting-engine
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-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
|
||||
.. |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
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
|
@ -42,22 +42,29 @@ This module provides a basic report class to generate csv report.
|
|||
Configuration
|
||||
=============
|
||||
|
||||
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.
|
||||
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.
|
||||
- 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.
|
||||
- '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.
|
||||
|
||||
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
|
||||
|
||||
|
|
@ -81,8 +88,9 @@ A python class ::
|
|||
res['quoting'] = csv.QUOTE_ALL
|
||||
return res
|
||||
|
||||
A report XML record :
|
||||
|
||||
A report XML record ::
|
||||
::
|
||||
|
||||
<report
|
||||
id="partner_csv"
|
||||
|
|
@ -102,7 +110,7 @@ Bug Tracker
|
|||
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.
|
||||
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.
|
||||
|
||||
|
|
@ -110,22 +118,22 @@ Credits
|
|||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
-------
|
||||
|
||||
* Creu Blanca
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
------------
|
||||
|
||||
* Enric Tobella <etobella@creublanca.es>
|
||||
* Jaime Arroyo <jaime.arroyo@creublanca.es>
|
||||
* Rattapong Chokmasermkul <rattapongc@ecosoft.co.th>
|
||||
* `Quartile <https://www.quartile.co>`__:
|
||||
- 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
|
||||
- Aung Ko Ko Lin
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
-----------
|
||||
|
||||
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
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"author": "Creu Blanca, Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"category": "Reporting",
|
||||
"version": "16.0.2.1.1",
|
||||
"version": "19.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["base", "web"],
|
||||
"demo": ["demo/report.xml"],
|
||||
|
|
@ -16,5 +16,6 @@
|
|||
"report_csv/static/src/js/report/qwebactionmanager.esm.js"
|
||||
]
|
||||
},
|
||||
"development_status": "Production/Stable",
|
||||
"installable": True,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ from odoo.http import (
|
|||
content_disposition,
|
||||
request,
|
||||
route,
|
||||
)
|
||||
from odoo.http import (
|
||||
serialize_exception as _serialize_exception,
|
||||
)
|
||||
from odoo.tools import html_escape
|
||||
|
|
@ -47,12 +49,10 @@ class ReportController(report.ReportController):
|
|||
("Content-Length", len(csv)),
|
||||
]
|
||||
return request.make_response(csv, headers=csvhttpheaders)
|
||||
return super(ReportController, self).report_routes(
|
||||
reportname, docids, converter, **data
|
||||
)
|
||||
return super().report_routes(reportname, docids, converter, **data)
|
||||
|
||||
@route()
|
||||
def report_download(self, data, context=None):
|
||||
def report_download(self, data, context=None, token=None, readonly=True):
|
||||
requestcontent = json.loads(data)
|
||||
url, report_type = requestcontent[0], requestcontent[1]
|
||||
reportname = ""
|
||||
|
|
@ -73,8 +73,9 @@ class ReportController(report.ReportController):
|
|||
url_decode(url.split("?")[1]).items()
|
||||
) # decoding the args represented in JSON
|
||||
if "context" in data:
|
||||
context, data_context = json.loads(context or "{}"), json.loads(
|
||||
data.pop("context")
|
||||
context, data_context = (
|
||||
json.loads(context or "{}"),
|
||||
json.loads(data.pop("context")),
|
||||
)
|
||||
context = json.dumps({**context, **data_context})
|
||||
response = self.report_routes(
|
||||
|
|
@ -84,7 +85,7 @@ class ReportController(report.ReportController):
|
|||
report = request.env["ir.actions.report"]._get_report_from_name(
|
||||
reportname
|
||||
)
|
||||
filename = "%s.%s" % (report.name, "csv")
|
||||
filename = f"{report.name}.csv"
|
||||
|
||||
if docids:
|
||||
ids = [int(x) for x in docids.split(",")]
|
||||
|
|
@ -93,13 +94,15 @@ class ReportController(report.ReportController):
|
|||
report_name = safe_eval(
|
||||
report.print_report_name, {"object": obj, "time": time}
|
||||
)
|
||||
filename = "%s.%s" % (report_name, "csv")
|
||||
filename = f"{report_name}.csv"
|
||||
response.headers.add(
|
||||
"Content-Disposition", content_disposition(filename)
|
||||
)
|
||||
return response
|
||||
else:
|
||||
return super(ReportController, self).report_download(data, context)
|
||||
return super().report_download(
|
||||
data, context, token=token, readonly=readonly
|
||||
)
|
||||
except Exception as e:
|
||||
_logger.exception("Error while generating report %s", reportname)
|
||||
se = _serialize_exception(e)
|
||||
|
|
|
|||
|
|
@ -4,41 +4,41 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model,name:report_csv.model_report_report_csv_abstract
|
||||
msgid "Abstract Model for CSV reports"
|
||||
msgstr "Apstraktni model za CSV izvještaje"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling
|
||||
msgid "Encode Error Handling"
|
||||
msgstr "Rukovanje greškom kodiranja"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encoding
|
||||
msgid "Encoding"
|
||||
msgstr "Kodna stranica:"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: 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"
|
||||
msgstr "Kodiranje koje će se primijeniti na generisanu CSV datoteku. npr. cp932"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#. odoo-python
|
||||
#: code:addons/report_csv/report/report_csv.py:0
|
||||
#, python-format
|
||||
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
|
||||
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling
|
||||
|
|
@ -50,32 +50,32 @@ msgstr ""
|
|||
#. module: report_csv
|
||||
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__ignore
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoriši"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.actions.report,name:report_csv.partner_csv
|
||||
msgid "Print to CSV"
|
||||
msgstr "Ispiši u CSV"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace
|
||||
msgid "Replace"
|
||||
msgstr "Zamijeni"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model,name:report_csv.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Akcija izvještaja"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model,name:report_csv.model_report_report_csv_partner_csv
|
||||
msgid "Report Partner to CSV"
|
||||
msgstr "Izvještaj partner u CSV"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__report_type
|
||||
msgid "Report Type"
|
||||
msgstr "Tip izvještaja"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__report_type
|
||||
|
|
@ -89,4 +89,4 @@ msgstr ""
|
|||
#. module: report_csv
|
||||
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__report_type__csv
|
||||
msgid "csv"
|
||||
msgstr "csv"
|
||||
msgstr ""
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -18,6 +18,13 @@ msgstr ""
|
|||
msgid "Abstract Model for CSV reports"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:report_csv.field_ir_actions_report__encode_error_handling
|
||||
msgid "Encode Error Handling"
|
||||
|
|
@ -36,10 +43,16 @@ msgstr ""
|
|||
#. module: report_csv
|
||||
#. odoo-python
|
||||
#: code:addons/report_csv/report/report_csv.py:0
|
||||
#, python-format
|
||||
msgid "Failed to encode the data with the encoding set in the report."
|
||||
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
|
||||
#: model:ir.model.fields,help:report_csv.field_ir_actions_report__encode_error_handling
|
||||
msgid ""
|
||||
|
|
@ -52,11 +65,6 @@ msgstr ""
|
|||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.actions.report,name:report_csv.partner_csv
|
||||
msgid "Print to CSV"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_csv
|
||||
#: model:ir.model.fields.selection,name:report_csv.selection__ir_actions_report__encode_error_handling__replace
|
||||
msgid "Replace"
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class ReportAction(models.Model):
|
|||
@api.model
|
||||
def _render_csv(self, report_ref, docids, data):
|
||||
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]
|
||||
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:
|
||||
|
|
@ -80,7 +80,7 @@ class ReportAction(models.Model):
|
|||
|
||||
@api.model
|
||||
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:
|
||||
return res
|
||||
report_obj = self.env["ir.actions.report"]
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
||||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue