188
bi_sql_editor/README.rst
Normal file
@@ -0,0 +1,188 @@
|
||||
=============
|
||||
BI SQL Editor
|
||||
=============
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/13.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-13-0/reporting-engine-13-0-bi_sql_editor
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/143/13.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|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)
|
||||
|
||||
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
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
* You must put this module as `server_wide_modules` in your odoo configuration file
|
||||
or add '--load=bi_sql_editor' if you start odoo in command line.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
To configure this module, you need to:
|
||||
|
||||
* Go to Settings / Technical / Database Structure / SQL Views
|
||||
|
||||
* tip your SQL request
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/01_sql_request.png
|
||||
:width: 800 px
|
||||
|
||||
* Select the group(s) that could have access to the view
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/02_security_access.png
|
||||
:width: 800 px
|
||||
|
||||
* Click on the button 'Clean and Check Request'
|
||||
|
||||
* 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/13.0/bi_sql_editor/static/description/03_field_mapping.png
|
||||
:width: 800 px
|
||||
|
||||
* Click on the button 'Create SQL View, Indexes and Models'. (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:: https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/04_materialized_view_setting.png
|
||||
:width: 800 px
|
||||
|
||||
* Finally, click on 'Create UI', to create new menu, action, graph view and
|
||||
search view.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to 'Reporting' / 'Custom Reports'
|
||||
|
||||
#. Select the desired report
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pivot.png
|
||||
:width: 800 px
|
||||
|
||||
* You can switch to 'Pie' chart or 'Line Chart' as any report,
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pie.png
|
||||
:width: 800 px
|
||||
|
||||
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 smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2013.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.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* GRAP
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* 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
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/13.0/bi_sql_editor>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
4
bi_sql_editor/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import models
|
||||
from .hooks import uninstall_hook
|
||||
23
bi_sql_editor/__manifest__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Copyright (C) 2017 - 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).
|
||||
|
||||
{
|
||||
"name": "BI SQL Editor",
|
||||
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
|
||||
"version": "14.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"category": "Reporting",
|
||||
"author": "GRAP,Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"depends": ["base", "sql_request_abstract"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"views/view_bi_sql_view.xml",
|
||||
"views/action.xml",
|
||||
"views/menu.xml",
|
||||
],
|
||||
"demo": ["demo/res_groups_demo.xml", "demo/bi_sql_view_demo.xml"],
|
||||
"installable": True,
|
||||
"uninstall_hook": "uninstall_hook",
|
||||
}
|
||||
67
bi_sql_editor/demo/bi_sql_view_demo.xml
Normal file
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2014 - 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).
|
||||
-->
|
||||
<odoo noupdate="1">
|
||||
<record id="incorrect_sql_view" model="bi.sql.view">
|
||||
<field name="name">Draft Incorrect SQL View</field>
|
||||
<field name="technical_name">incorrect_view</field>
|
||||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT *
|
||||
FROM unexisting_table
|
||||
ORDER BY unexisting_field
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<record id="partner_sql_view" model="bi.sql.view">
|
||||
<field name="name">Partners View</field>
|
||||
<field name="technical_name">partners_view</field>
|
||||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT
|
||||
name as x_name,
|
||||
street as x_street,
|
||||
company_id as x_company_id
|
||||
FROM res_partner
|
||||
ORDER BY name
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<record id="module_sql_view" model="bi.sql.view">
|
||||
<field name="name">Modules by Authors</field>
|
||||
<field name="technical_name">modules_view</field>
|
||||
<field name="is_materialized" eval="0" />
|
||||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT
|
||||
name as x_name,
|
||||
case
|
||||
when author ilike '%OpenERP SA%' THEN 'Odoo SA'
|
||||
when author ilike '%Odoo Community Association (OCA)%' THEN 'OCA'
|
||||
else 'Undefined Author' END as x_author_type
|
||||
FROM ir_module_module
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_validate_sql_expression"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_create_sql_view_and_model"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_create_ui"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
</odoo>
|
||||
14
bi_sql_editor/demo/res_groups_demo.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2014 - 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).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="base.group_no_one" model="res.groups">
|
||||
<field name="users" eval="[(4, 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'))]" />
|
||||
</record>
|
||||
</odoo>
|
||||
11
bi_sql_editor/hooks.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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, {})
|
||||
recs = env["bi.sql.view"].search([])
|
||||
for rec in recs:
|
||||
rec.button_set_draft()
|
||||
644
bi_sql_editor/i18n/am.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/ar.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 "النموذج"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "الأمن"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "مسوّدة"
|
||||
644
bi_sql_editor/i18n/bg.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Защита"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
637
bi_sql_editor/i18n/bi_sql_editor.pot
Normal file
@@ -0,0 +1,637 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 13.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/bs.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sigurnost"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Postavi u pripremu"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "U pripremi"
|
||||
647
bi_sql_editor/i18n/ca.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
msgstr "Nom del índex "
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Consulta "
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguritat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Esborrany"
|
||||
647
bi_sql_editor/i18n/cs.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Zabezpečení"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Nastavit na koncept"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Návrh"
|
||||
647
bi_sql_editor/i18n/da.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhed"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Delstat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Udkast"
|
||||
661
bi_sql_editor/i18n/de.po
Normal file
@@ -0,0 +1,661 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2017
|
||||
msgid ""
|
||||
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: 2019-04-24 20:16+0000\n"
|
||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.5.1\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr "%d.%m.%Y %H:%M:%S UTC"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Kopie)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr "%s Zugriff %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Zugriff %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr "Erlaubte Gruppen"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "Erlaubte Benutzer"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
msgstr ""
|
||||
"Sind Sie sicher, dass Sie diese SQL-Sicht in den Entwurf zurücksetzen "
|
||||
"möchten? Dies wird Ihre umgesetzten Sichten und vorausgegangene "
|
||||
"Spaltenzuordnungen löschen"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
|
||||
msgid "Available"
|
||||
msgstr "Verfügbar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
#, fuzzy
|
||||
msgid "BI SQL View"
|
||||
msgstr "Bi SQL Ansichtsfeld"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "Bi SQL Ansichtsfeld"
|
||||
|
||||
#. 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 ""
|
||||
"Haken Sie diese Box an, um eine 'Gruppiere nach' Option in der Suche "
|
||||
"anzubieten"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Angelegt durch"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Angelegt am"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr "Feldart"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
msgstr "Index Name"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert durch"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Modellbezeichnung"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Bezeichnung"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Abfrage"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sicherheit"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Auf Entwurf setzen"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
"Status der Abfrage:\n"
|
||||
"* 'Entwurf': Ungeprüft\n"
|
||||
"* 'SQL gültig': SQL Abfrage ist geprüft und gültig"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Technische Bezeichnung"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 "Nicht verfügbar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "Auswahl"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Entwurf"
|
||||
|
||||
#~ msgid "SQL Valid"
|
||||
#~ msgstr "SQL gültig"
|
||||
645
bi_sql_editor/i18n/el_GR.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
||||
"el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Ονομασία"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Ασφάλεια"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/en_GB.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Security"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Set to Draft"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Draft"
|
||||
664
bi_sql_editor/i18n/es.po
Normal file
@@ -0,0 +1,664 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-12 02:51+0000\n"
|
||||
"PO-Revision-Date: 2021-03-09 18:45+0000\n"
|
||||
"Last-Translator: Ana Suárez <ana.suarez@qubiq.es>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr "%m/%d/%Y %H:%M:%S UTC"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Copia)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr "%s Acceso %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Acceso %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr "Contexto Acción"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr "Ajustes Acción"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr "Grupos permitidos"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "Usuarios permitidos"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
msgstr ""
|
||||
"Está seguro de que quiere establecer a borrador esta vista SQL. Eliminará la "
|
||||
"vista materializada, y el mapeo anteriormente realizado con las columnas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "BI SQL View"
|
||||
msgstr "Vista BI SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "Campo Vista BI SQL"
|
||||
|
||||
#. 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 ""
|
||||
"Marque esta casilla si quiere crear la opción 'agrupar por' en la vista de "
|
||||
"búsqueda"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
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 ""
|
||||
"Marque esta casilla si quiere crear un índice en ese campo. Esto es "
|
||||
"recomendable para campos que se pueden agrupar y filtrar, para reducir la "
|
||||
"duración"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
|
||||
msgid "Column"
|
||||
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\" or \"tree\""
|
||||
msgstr ""
|
||||
"Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o \"tree\""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr "Crear Vista SQL, Índices y Modelos"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr "Crear UI"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 que refrescará la vista materializada"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
msgstr "Tamaño Base de Datos"
|
||||
|
||||
#. 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 ""
|
||||
"Defina aquí un contexto que será utilizado por defecto, cuando se cree la "
|
||||
"acción."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
#, fuzzy
|
||||
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)]."
|
||||
msgstr ""
|
||||
"Defina aquí restricciones de acceso a los datos.\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)]."
|
||||
|
||||
#. 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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr "Definición Regla Extra"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
msgstr "Información Extra"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
msgstr "Descripción del campo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr "Tipo de campo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Nombre del modelo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "Odoo Model"
|
||||
msgstr "Modelo Odoo"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Consulta"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Cambiar a borrador"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Nombre técnico"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "selección"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "No suscrito"
|
||||
645
bi_sql_editor/i18n/es_AR.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
645
bi_sql_editor/i18n/es_CL.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
645
bi_sql_editor/i18n/es_CO.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/es_CR.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Cambiar a borrador"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
645
bi_sql_editor/i18n/es_DO.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/es_EC.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Cambiar a borrador"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
648
bi_sql_editor/i18n/es_ES.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
648
bi_sql_editor/i18n/es_MX.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Cambiar a borrador"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
645
bi_sql_editor/i18n/es_PE.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
645
bi_sql_editor/i18n/es_PY.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/es_VE.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Provincia"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
647
bi_sql_editor/i18n/et.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Turvalisus"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Sea mustandiks"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Mustand"
|
||||
644
bi_sql_editor/i18n/eu.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Izena"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
644
bi_sql_editor/i18n/fa.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "امنیت"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
647
bi_sql_editor/i18n/fi.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Aseta luonnokseksi"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Tila"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Luonnos"
|
||||
711
bi_sql_editor/i18n/fr.po
Normal file
@@ -0,0 +1,711 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-31 11:56+0000\n"
|
||||
"PO-Revision-Date: 2017-08-31 11:56+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr "%d/%m/%Y %H:%M:%S UTC"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (Copie)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr "%s Accès %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Accès %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Action Settings"
|
||||
msgstr "Options de Sélection"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr "Groupes autorisés"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "Utilisateurs Autorisés"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
msgstr ""
|
||||
"Etes vous sur de vouloir remettre la Vue SQL en brouillon. Cela supprimera "
|
||||
"la vue (matérialisée), et tout le mapping préalablement réalisé sur les "
|
||||
"colonnes"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
#, fuzzy
|
||||
msgid "BI SQL View"
|
||||
msgstr "Vue SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
#, fuzzy
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "Champs SQL"
|
||||
|
||||
#. 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 ""
|
||||
"Cochez cette case pour créer une option 'Grouper Par' sur la vue de recherche"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
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 ""
|
||||
"Cochez cette case pour créer un index SQL sur ce champ. Cela est recommandé "
|
||||
"pour les champs de recherche et de regroupement pour réduire le temps "
|
||||
"d'affichage."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
|
||||
msgid "Column"
|
||||
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\" or \"tree\""
|
||||
msgstr ""
|
||||
"Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" ou "
|
||||
"\"tree\""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr "Créer la vue SQL, les index et les modèles"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr "Créer IU"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. 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 "Tâche CRON qui va rafraichir la vue matérialisée"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
msgstr "Taille de la base de données"
|
||||
|
||||
#. 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
|
||||
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)]."
|
||||
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 "
|
||||
"exemple : \n"
|
||||
" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
|
||||
"False)]."
|
||||
|
||||
#. 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
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr "Définition de règle complémentaire"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
msgstr "Information complémentaire"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
msgstr "Description du champ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr "Type de champ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
"Pour les champs 'Many2one' de Odoo.\n"
|
||||
"Champ du modèle lié"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
msgstr ""
|
||||
"Pour les champs Odoo 'Selection'.\n"
|
||||
" Liste des options, spécifié par une expression python, définition une liste "
|
||||
"de paires de (clé, valeur). Par exemple : [('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 "Nom complet du modèle transiant qui sera créé."
|
||||
|
||||
#. 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 "Nom complet de la vue SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
msgstr "Type de Graphe"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
#, fuzzy
|
||||
msgid "Has Group Changed"
|
||||
msgstr "A un changement de groupe"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
msgstr "Caché"
|
||||
|
||||
#. 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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
msgstr "Nom de l'index"
|
||||
|
||||
#. 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 "Est 'Grouper Par'"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
msgstr "Est un index"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized
|
||||
msgid "Is Materialized View"
|
||||
msgstr "Est une vue matérialisée"
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
#, fuzzy
|
||||
msgid "Materialized Text"
|
||||
msgstr "Materialized text"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
|
||||
msgid "Measure"
|
||||
msgstr "Mesure"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Nom du modèle"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
"Aucune colonne n'a été trouvée.\n"
|
||||
"Les noms de colonnes doivent être préfixés par 'x_'."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr "Action Odoo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
msgstr "Cron 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 "Vue graphique Odoo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
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 "Modèle Odoo"
|
||||
|
||||
#. 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 "Vue Pivot de Odoo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
msgstr "Odoo Rule"
|
||||
|
||||
#. 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 "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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree views are supported"
|
||||
msgstr "Seules les vues graphique, pivot et arbre sont supportées"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Open View"
|
||||
msgstr "Ouvrir la vue"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr "Valider l'expression SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Requête"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr "Rafraichir la vue matérialisée"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
|
||||
msgid "Row"
|
||||
msgstr "Ligne"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr "Définition de règle"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
"Erreur SQL lors de la création de %s VIEW %s :\n"
|
||||
" %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 "Champs SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr "Requête SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
msgstr "SQL Reports"
|
||||
|
||||
#. 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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
msgstr ""
|
||||
"Requête SQL qui sera insérée dans la vue SQL. Faire attention à :\n"
|
||||
" * Mettre un nom (AS) pour tous les champs à afficher, spécialement si vous "
|
||||
"utilisez des fonctions SQL (comme EXTRACT, ...);\n"
|
||||
" * Ne pas utiliser 'SELECT *' ou 'SELECT table.*';\n"
|
||||
" * Préfixer le nom des colonnes à afficher par '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 "Type SQL"
|
||||
|
||||
#. 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 "Type SQL dans la base de données"
|
||||
|
||||
#. 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 "Vue SQL"
|
||||
|
||||
#. 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 "Vue SQL et Modèle créés"
|
||||
|
||||
#. 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 "Vues SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sécurité"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr "Options de Sélection"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Remettre en brouillon"
|
||||
|
||||
#. 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 "Taille de la vue matérialisée et de ses index"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Statut"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
"Etat de la requête:\n"
|
||||
" * 'En brouillon': non testée\n"
|
||||
" * 'SQL Validé': La requête SQL a été vérifiée et est valide"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
"Suffixe de la vue SQL. Le nom SQL complet sera calculé et préfixé par "
|
||||
"'x_bi_sql_view_'. La syntaxe doit suivre : https://www.postgresql.org/docs/"
|
||||
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Nom technique"
|
||||
|
||||
#. 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 ""
|
||||
"Cette valeur sera utilisée comme nom du champ odoo et sera affichée aux "
|
||||
"utilisateurs"
|
||||
|
||||
#. 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 "Cela va créer une vue Odoo, une action et un menu"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
"Cela va créer une vue SQL, basée sur la requête SQL et va créer le modèle "
|
||||
"transiant correspondant et les champs, basés sur le paramétrage"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
msgstr "Visibilité dans la liste"
|
||||
|
||||
#. 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 "
|
||||
"available for search or group by function"
|
||||
msgstr ""
|
||||
"Type du champs Odoo qui sera créé. Garder vide si vous ne souhaitez pas "
|
||||
"créer un nouveau champ. Si vide, ce champ ne sera pas affiché et ne sera pas "
|
||||
"disponible pour les fonctions de recherche et de regroupement"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable
|
||||
msgid "Unavailable"
|
||||
msgstr "Indisponible"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Update Model Access"
|
||||
msgstr "Mettre à jour les accès au modèle"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr "Valider l'expression SQL"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr "Nom de la vue"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
msgstr "Ordre des vues"
|
||||
|
||||
#. 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 "Vues, Actions et menus créés"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr "Vous pouvez seulement réaliser cette action sur des items SQL valides"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 "boolean"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "char"
|
||||
msgstr "char"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
|
||||
msgid "date"
|
||||
msgstr "date"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "datetime"
|
||||
msgstr "datetime"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
|
||||
msgid "float"
|
||||
msgstr "float"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr "integer"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr "many2one"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "selection"
|
||||
|
||||
#. 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 "sequence"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr "Cela va rafraichir la vue matérialisée"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Brouillon"
|
||||
|
||||
#~ msgid "SQL Valid"
|
||||
#~ msgstr "SQL Validé"
|
||||
|
||||
#~ msgid "bi.sql.view"
|
||||
#~ msgstr "bi.sql.view"
|
||||
|
||||
#~ msgid "bi.sql.view.field"
|
||||
#~ msgstr "bi.sql.view.field"
|
||||
|
||||
#~ msgid "You can only unlink draft views"
|
||||
#~ msgstr "Vous pouvez seulement supprimer des vues en brouillon"
|
||||
645
bi_sql_editor/i18n/fr_CA.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: French (Canada) (https://www.transifex.com/oca/teams/23907/"
|
||||
"fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/fr_CH.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Etat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Brouillon"
|
||||
647
bi_sql_editor/i18n/gl.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "ültima actualización por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Borrador"
|
||||
645
bi_sql_editor/i18n/gl_ES.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"gl_ES/)\n"
|
||||
"Language: gl_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
644
bi_sql_editor/i18n/he.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "אבטחה"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/hr.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Stvorio/la"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Stvoreno dana"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnju izmjenu izvršio/la"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sigurnost"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Postavi na nacrt"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
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"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Skica"
|
||||
646
bi_sql_editor/i18n/hr_HR.po
Normal file
@@ -0,0 +1,646 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"hr_HR/)\n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Oblast/Županija"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
647
bi_sql_editor/i18n/hu.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Biztonság"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Beállítás tervezetnek"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Állapot"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Tervezet"
|
||||
644
bi_sql_editor/i18n/id.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Keamanan"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/it.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2017
|
||||
msgid ""
|
||||
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: 2017-08-12 02:51+0000\n"
|
||||
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 "Disponibile"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome da visualizzare"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 "Riga"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sicurezza"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Imposta a Bozza"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Nome tecnico"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 "Non disponibile"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Bozza"
|
||||
647
bi_sql_editor/i18n/ja.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "セキュリティ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "ドラフト"
|
||||
644
bi_sql_editor/i18n/ko.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "보안"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/lt.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Saugumas"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Nustatyti kaip juodraštį"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Juodraštis"
|
||||
646
bi_sql_editor/i18n/lt_LT.po
Normal file
@@ -0,0 +1,646 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
645
bi_sql_editor/i18n/lv.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nosaukums"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Drošība"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
647
bi_sql_editor/i18n/mk.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Безбедност"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Нацрт"
|
||||
647
bi_sql_editor/i18n/mn.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Нэр"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Хамгаалалт"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Ноорог"
|
||||
648
bi_sql_editor/i18n/nb.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
||||
"nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhet"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Sett som utkast"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Utkast"
|
||||
648
bi_sql_editor/i18n/nb_NO.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nb_NO/)\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Laget 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Stat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Drøfting"
|
||||
647
bi_sql_editor/i18n/nl.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Zet op concept"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Staat/Provincie"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Concept"
|
||||
648
bi_sql_editor/i18n/nl_BE.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Naam:"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Terugzetten naar Concept"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Concept"
|
||||
646
bi_sql_editor/i18n/nl_NL.po
Normal file
@@ -0,0 +1,646 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"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: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
649
bi_sql_editor/i18n/pl.po
Normal file
@@ -0,0 +1,649 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
|
||||
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Uprawnienia"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Stan"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Projekt"
|
||||
647
bi_sql_editor/i18n/pt.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Definir como rascunho"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Rascunho"
|
||||
648
bi_sql_editor/i18n/pt_BR.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "Identificação"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Segurança"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Definir como Provisório"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Rascunho"
|
||||
648
bi_sql_editor/i18n/pt_PT.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Definir como rascunho"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Rascunho"
|
||||
648
bi_sql_editor/i18n/ro.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Seteaza ca Ciorna"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Județ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Schiță"
|
||||
649
bi_sql_editor/i18n/ru.po
Normal file
@@ -0,0 +1,649 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 "Модель"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Название"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Черновик"
|
||||
644
bi_sql_editor/i18n/sk.po
Normal file
@@ -0,0 +1,644 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Meno"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Bezpečnosť"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
689
bi_sql_editor/i18n/sl.po
Normal file
@@ -0,0 +1,689 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-31 11:56+0000\n"
|
||||
"PO-Revision-Date: 2017-08-31 11:56+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr "%s (kopija)"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr "%s Dostop %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
msgstr "Dostop %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context
|
||||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Action Settings"
|
||||
msgstr "Opcije izbire"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr "Dovoljene skupine"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr "Dovoljeni uporabniki"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 "Na voljo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
#, fuzzy
|
||||
msgid "BI SQL View"
|
||||
msgstr "SQL prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field
|
||||
#, fuzzy
|
||||
msgid "Bi SQL View Field"
|
||||
msgstr "SQL polja"
|
||||
|
||||
#. 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 ""
|
||||
"Označite to polje če želite ustvariti opcijo 'združi po' v iskalnem prikazu"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
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 ""
|
||||
"Označite to polje če želite ustvariti indeks na tistem polju. To je "
|
||||
"priporočeno za iskalna in združevalna polja, da se zmanjša trajanje"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col
|
||||
msgid "Column"
|
||||
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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr "Ustvari SQL prikaz, indekse in modele"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr "Ustvari UI"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. 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 opravilo, ki bo osvežilo materializirani prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
msgstr "Velikost podatkovne baze"
|
||||
|
||||
#. 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
|
||||
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)]."
|
||||
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)]."
|
||||
|
||||
#. 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
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazni 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 "Definicija dodatnega pravila"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
msgstr ""
|
||||
"Za polje 'Selection'.\n"
|
||||
" Seznam opcij določenih kot Python izrazi, ki definirajo seznam parov (key, "
|
||||
"label). Naprimer: [('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 "Polno kvalificirani naziv tranzicijskega modela, ki bo ustvarjen."
|
||||
|
||||
#. 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 "Polni naziv SQL prikaza"
|
||||
|
||||
#. 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 grafa"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
#, fuzzy
|
||||
msgid "Has Group Changed"
|
||||
msgstr "Se je skupina spremenila"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 združi po"
|
||||
|
||||
#. 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 indeks"
|
||||
|
||||
#. 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 materializirani prikaz"
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
#, fuzzy
|
||||
msgid "Materialized Text"
|
||||
msgstr "Materializirano besedilo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
|
||||
msgid "Measure"
|
||||
msgstr "Izmera"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
"Stolpec ni najden.\n"
|
||||
"Naziv stolpca mora imeti predpono 'x_'."
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr "Odoo dejanje"
|
||||
|
||||
#. 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__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__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr "Odoo meni"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 "Odoo prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr "Overjanje SQL izraza"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Poizvedba"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr "Osveži materializirani prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
msgstr "Osveži materializirani prikaz %s"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row
|
||||
msgid "Row"
|
||||
msgstr "Vrstica"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
"SQL napaka pri nastanku %s VIEW %s :\n"
|
||||
" %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 polja"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr "SQL poizvedba"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
msgstr "SQL poročila"
|
||||
|
||||
#. 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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
msgstr ""
|
||||
"SQL zahtevek, ki bo vstavljen v prikaz. Poskrbite, da bo :\n"
|
||||
" * nastavljen naziv za vsa izbrana polja, še posebej če uporabljate SQL "
|
||||
"funkcijo (kot EXTRACT, ...);\n"
|
||||
" * se ne uporablja 'SELECT *' ali 'SELECT table.*';\n"
|
||||
" * naziv izbirnih stolpcev vseboval predpono '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 tip"
|
||||
|
||||
#. 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 v bazi"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 in model ustvarjena"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Varnost"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr "Opcije izbire"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Nastavi kot osnutek"
|
||||
|
||||
#. 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 "Velikost materializiranega prikaza in pripadajočih indeksov"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
"Stanje zahtevka:\n"
|
||||
" * 'Osnutek': ni testirano\n"
|
||||
" * 'SQL veljaven': SQL zahtevek je bil preverjen in je veljaven"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
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čni naziv"
|
||||
|
||||
#. 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 "To bo uporabljeno kot naziv Odoo polja, ki bo prikazan uporabnikom"
|
||||
|
||||
#. 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 "To ustvari Odoo prikaz, dejanje in meni"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
"To poskusi ustvariti SQL prikaz na osnovi SQL zahtevka in glede na "
|
||||
"tranzicijski model in polja na osnovi nastavitev"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 "Ni na voljo"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
#, fuzzy
|
||||
msgid "Update Model Access"
|
||||
msgstr "Posodobi dostope modela"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
msgstr ""
|
||||
"Posodobi dostope modela. Potrebno, če ste spremenili seznam skupin po "
|
||||
"nastanku modela"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr "Overjanje SQL izraza"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr "Naziv prikaza"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
msgid "You can not create indexes on non materialized views"
|
||||
msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr "To dejanje lahko obdelate le na SQL veljavnih postavkah"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 "boolean"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "char"
|
||||
msgstr "char"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date
|
||||
msgid "date"
|
||||
msgstr "date"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "datetime"
|
||||
msgstr "datetime"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float
|
||||
msgid "float"
|
||||
msgstr "float"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr "integer"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr "many2one"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
msgstr "selection"
|
||||
|
||||
#. 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 "sequence"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr "osvežitev materializiranega prikaza"
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Osnutek"
|
||||
|
||||
#~ msgid "SQL Valid"
|
||||
#~ msgstr "SQL veljaven"
|
||||
|
||||
#~ msgid "You can only unlink draft views"
|
||||
#~ msgstr "Razvezujete lahko le osnutke prikazov"
|
||||
645
bi_sql_editor/i18n/sr.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Bezbednost"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
649
bi_sql_editor/i18n/sr@latin.po
Normal file
@@ -0,0 +1,649 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||
"sr@latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Ime:"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Bezbednost"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Nacrt"
|
||||
647
bi_sql_editor/i18n/sv.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Säkerhet"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Sätt till preliminär"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Preliminär"
|
||||
647
bi_sql_editor/i18n/th.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "ความปลอดภัย"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "ฉบับร่าง"
|
||||
648
bi_sql_editor/i18n/tr.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||
msgid ""
|
||||
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: 2017-08-12 02:51+0000\n"
|
||||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 "Uygun"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Güvenlik"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Taslak Olarak Ayarlayın"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Durum"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
msgstr "Teknik Ad"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Taslak"
|
||||
649
bi_sql_editor/i18n/tr_TR.po
Normal file
@@ -0,0 +1,649 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bi_sql_editor
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||
msgid ""
|
||||
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: 2017-08-12 02:51+0000\n"
|
||||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||
"tr_TR/)\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 "Uygun"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Tip adı"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Ad"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
msgstr "Soru"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Güvenlik"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "Hal"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 "Uygun değil"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Taslak"
|
||||
645
bi_sql_editor/i18n/uk.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Безпека"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
647
bi_sql_editor/i18n/vi.po
Normal file
@@ -0,0 +1,647 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force
|
||||
msgid "Extra Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Bảo mật"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "Dự thảo"
|
||||
645
bi_sql_editor/i18n/vi_VN.po
Normal file
@@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: 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"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
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__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
648
bi_sql_editor/i18n/zh_CN.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
|
||||
msgid "Index Name"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 "模型"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "安全"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr "状态"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "草稿"
|
||||
648
bi_sql_editor/i18n/zh_TW.po
Normal file
@@ -0,0 +1,648 @@
|
||||
# Translation of Odoo Server.
|
||||
# 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 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \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: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_TW/)\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids
|
||||
msgid "Allowed Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view
|
||||
msgid "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 ""
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
|
||||
#. 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\" or \"tree\""
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Database Size"
|
||||
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
|
||||
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)]."
|
||||
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
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Extras Information"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
"For 'Many2one' Odoo field.\n"
|
||||
" Comodel of the field."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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')]"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type
|
||||
msgid "Graph Type"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
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
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index
|
||||
msgid "Is Index"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name
|
||||
msgid "Name"
|
||||
msgstr "名稱"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id
|
||||
msgid "Odoo Cron"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id
|
||||
msgid "Odoo Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id
|
||||
msgid "Odoo Rule"
|
||||
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 ""
|
||||
|
||||
#. 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query
|
||||
msgid "Query"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Rule Definition"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
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"
|
||||
" * Do not use 'SELECT *' or 'SELECT table.*';\n"
|
||||
" * prefix the name of the selectable columns by 'x_';"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "安全"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
" * 'SQL Valid': SQL Request has been checked and is valid"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
|
||||
msgid "Technical Name"
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility
|
||||
msgid "Tree Visibility"
|
||||
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 "
|
||||
"available for search or group by function"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Update Model Access"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Update Model Access. Required if you changed groups list after having "
|
||||
"created the model"
|
||||
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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order
|
||||
msgid "View Order"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "You can only process this action on SQL Valid items"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: 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 "
|
||||
"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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime
|
||||
msgid "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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer
|
||||
msgid "integer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one
|
||||
msgid "many2one"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection
|
||||
msgid "selection"
|
||||
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 ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "草稿"
|
||||
5
bi_sql_editor/models/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import bi_sql_view
|
||||
from . import bi_sql_view_field
|
||||
from . import ir_model
|
||||
766
bi_sql_editor/models/bi_sql_view.py
Normal file
@@ -0,0 +1,766 @@
|
||||
# Copyright (C) 2017 - 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).
|
||||
|
||||
import logging
|
||||
from datetime import datetime
|
||||
|
||||
from psycopg2 import ProgrammingError
|
||||
|
||||
from odoo import SUPERUSER_ID, _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tools import pycompat, sql, table_columns
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
from odoo.addons.base.models.ir_model import IrModel
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@api.model
|
||||
def _instanciate(self, model_data):
|
||||
"""Return a class for the custom model given by
|
||||
parameters ``model_data``."""
|
||||
# This monkey patch is meant to avoid create/search tables for those
|
||||
# materialized views. Doing "super" doesn't work.
|
||||
class CustomModel(models.Model):
|
||||
_name = pycompat.to_text(model_data["model"])
|
||||
_description = model_data["name"]
|
||||
_module = False
|
||||
_custom = True
|
||||
_transient = bool(model_data["transient"])
|
||||
__doc__ = model_data["info"]
|
||||
|
||||
# START OF patch
|
||||
if model_data["model"].startswith(BiSQLView._model_prefix):
|
||||
CustomModel._auto = False
|
||||
CustomModel._abstract = True
|
||||
# END of patch
|
||||
return CustomModel
|
||||
|
||||
|
||||
IrModel._instanciate = _instanciate
|
||||
|
||||
|
||||
class BiSQLView(models.Model):
|
||||
_name = "bi.sql.view"
|
||||
_description = "BI SQL View"
|
||||
_order = "sequence"
|
||||
_inherit = ["sql.request.mixin"]
|
||||
|
||||
_sql_prefix = "x_bi_sql_view_"
|
||||
|
||||
_model_prefix = "x_bi_sql_view."
|
||||
|
||||
_sql_request_groups_relation = "bi_sql_view_groups_rel"
|
||||
|
||||
_sql_request_users_relation = "bi_sql_view_users_rel"
|
||||
|
||||
_STATE_SQL_EDITOR = [
|
||||
("model_valid", "SQL View and Model Created"),
|
||||
("ui_valid", "Views, Action and Menu Created"),
|
||||
]
|
||||
|
||||
technical_name = fields.Char(
|
||||
string="Technical Name",
|
||||
required=True,
|
||||
help="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",
|
||||
)
|
||||
|
||||
view_name = fields.Char(
|
||||
string="View Name",
|
||||
compute="_compute_view_name",
|
||||
readonly=True,
|
||||
store=True,
|
||||
help="Full name of the SQL view",
|
||||
)
|
||||
|
||||
model_name = fields.Char(
|
||||
string="Model Name",
|
||||
compute="_compute_model_name",
|
||||
readonly=True,
|
||||
store=True,
|
||||
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",
|
||||
)
|
||||
|
||||
state = fields.Selection(selection_add=_STATE_SQL_EDITOR)
|
||||
|
||||
view_order = fields.Char(
|
||||
string="View Order",
|
||||
required=True,
|
||||
readonly=False,
|
||||
states={"ui_valid": [("readonly", True)]},
|
||||
default="pivot,graph,tree",
|
||||
help="Comma-separated text. Possible values:" ' "graph", "pivot" or "tree"',
|
||||
)
|
||||
|
||||
query = fields.Text(
|
||||
help="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"
|
||||
" * 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",
|
||||
)
|
||||
|
||||
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", string="Computed Action Context"
|
||||
)
|
||||
|
||||
action_context = fields.Text(
|
||||
string="Action Context",
|
||||
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)],
|
||||
},
|
||||
)
|
||||
|
||||
has_group_changed = fields.Boolean(copy=False)
|
||||
|
||||
bi_sql_view_field_ids = fields.One2many(
|
||||
string="SQL Fields",
|
||||
comodel_name="bi.sql.view.field",
|
||||
inverse_name="bi_sql_view_id",
|
||||
)
|
||||
|
||||
model_id = fields.Many2one(
|
||||
string="Odoo Model", comodel_name="ir.model", readonly=True
|
||||
)
|
||||
|
||||
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
|
||||
)
|
||||
|
||||
search_view_id = fields.Many2one(
|
||||
string="Odoo Search View", comodel_name="ir.ui.view", readonly=True
|
||||
)
|
||||
|
||||
action_id = fields.Many2one(
|
||||
string="Odoo Action", comodel_name="ir.actions.act_window", readonly=True
|
||||
)
|
||||
|
||||
menu_id = fields.Many2one(
|
||||
string="Odoo Menu", comodel_name="ir.ui.menu", readonly=True
|
||||
)
|
||||
|
||||
cron_id = fields.Many2one(
|
||||
string="Odoo Cron",
|
||||
comodel_name="ir.cron",
|
||||
readonly=True,
|
||||
help="Cron Task that will refresh the materialized view",
|
||||
)
|
||||
|
||||
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)]},
|
||||
)
|
||||
|
||||
sequence = fields.Integer(string="sequence")
|
||||
|
||||
# Constrains Section
|
||||
@api.constrains("is_materialized")
|
||||
def _check_index_materialized(self):
|
||||
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")
|
||||
)
|
||||
|
||||
@api.constrains("view_order")
|
||||
def _check_view_order(self):
|
||||
for rec in self:
|
||||
if rec.view_order:
|
||||
for vtype in rec.view_order.split(","):
|
||||
if vtype not in ("graph", "pivot", "tree"):
|
||||
raise UserError(
|
||||
_("Only graph, pivot or tree views are supported")
|
||||
)
|
||||
|
||||
# Compute Section
|
||||
@api.depends("bi_sql_view_field_ids.graph_type")
|
||||
def _compute_computed_action_context(self):
|
||||
for rec in self:
|
||||
action = {
|
||||
"pivot_measures": [],
|
||||
"pivot_row_groupby": [],
|
||||
"pivot_column_groupby": [],
|
||||
}
|
||||
for field in rec.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.graph_type == "measure"
|
||||
):
|
||||
action["pivot_measures"].append(field.name)
|
||||
|
||||
for field in rec.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.graph_type == "row"
|
||||
):
|
||||
action["pivot_row_groupby"].append(field.name)
|
||||
|
||||
for field in rec.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.graph_type == "col"
|
||||
):
|
||||
action["pivot_column_groupby"].append(field.name)
|
||||
|
||||
rec.computed_action_context = str(action)
|
||||
|
||||
@api.depends("is_materialized")
|
||||
def _compute_materialized_text(self):
|
||||
for sql_view in self:
|
||||
sql_view.materialized_text = (
|
||||
sql_view.is_materialized and "MATERIALIZED" or ""
|
||||
)
|
||||
|
||||
@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,
|
||||
)
|
||||
|
||||
@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,
|
||||
)
|
||||
|
||||
@api.onchange("group_ids")
|
||||
def onchange_group_ids(self):
|
||||
if self.state not in ("draft", "sql_valid"):
|
||||
self.has_group_changed = True
|
||||
|
||||
# Overload Section
|
||||
def write(self, vals):
|
||||
res = super(BiSQLView, self).write(vals)
|
||||
if vals.get("sequence", False):
|
||||
for rec in self.filtered(lambda x: x.menu_id):
|
||||
rec.menu_id.sequence = rec.sequence
|
||||
return res
|
||||
|
||||
def unlink(self):
|
||||
if any(view.state not in ("draft", "sql_valid") for view in self):
|
||||
raise UserError(
|
||||
_(
|
||||
"You can only unlink draft views."
|
||||
"If you want to delete them, first set them to draft."
|
||||
)
|
||||
)
|
||||
self.cron_id.unlink()
|
||||
return super(BiSQLView, self).unlink()
|
||||
|
||||
def copy(self, default=None):
|
||||
self.ensure_one()
|
||||
default = dict(default or {})
|
||||
default.update(
|
||||
{
|
||||
"name": _("%s (Copy)") % self.name,
|
||||
"technical_name": "%s_copy" % self.technical_name,
|
||||
}
|
||||
)
|
||||
return super(BiSQLView, self).copy(default=default)
|
||||
|
||||
# Action Section
|
||||
def button_create_sql_view_and_model(self):
|
||||
for sql_view in self.filtered(lambda x: x.state == "sql_valid"):
|
||||
# Create ORM and access
|
||||
sql_view._create_model_and_fields()
|
||||
sql_view._create_model_access()
|
||||
|
||||
# Create SQL View and indexes
|
||||
sql_view._create_view()
|
||||
sql_view._create_index()
|
||||
|
||||
if sql_view.is_materialized:
|
||||
if not sql_view.cron_id:
|
||||
sql_view.cron_id = (
|
||||
self.env["ir.cron"].create(sql_view._prepare_cron()).id
|
||||
)
|
||||
else:
|
||||
sql_view.cron_id.active = True
|
||||
sql_view.state = "model_valid"
|
||||
|
||||
def button_set_draft(self):
|
||||
for sql_view in self.filtered(lambda x: x.state != "draft"):
|
||||
sql_view.menu_id.unlink()
|
||||
sql_view.action_id.unlink()
|
||||
sql_view.tree_view_id.unlink()
|
||||
sql_view.graph_view_id.unlink()
|
||||
sql_view.pivot_view_id.unlink()
|
||||
sql_view.search_view_id.unlink()
|
||||
|
||||
if sql_view.state in ("model_valid", "ui_valid"):
|
||||
# Drop SQL View (and indexes by cascade)
|
||||
if sql_view.is_materialized:
|
||||
sql_view._drop_view()
|
||||
|
||||
if sql_view.cron_id:
|
||||
sql_view.cron_id.active = False
|
||||
|
||||
# Drop ORM
|
||||
sql_view._drop_model_and_fields()
|
||||
|
||||
sql_view.has_group_changed = False
|
||||
super(BiSQLView, sql_view).button_set_draft()
|
||||
return True
|
||||
|
||||
def button_create_ui(self):
|
||||
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
|
||||
)
|
||||
self.pivot_view_id = (
|
||||
self.env["ir.ui.view"].create(self._prepare_pivot_view()).id
|
||||
)
|
||||
self.search_view_id = (
|
||||
self.env["ir.ui.view"].create(self._prepare_search_view()).id
|
||||
)
|
||||
self.action_id = (
|
||||
self.env["ir.actions.act_window"].create(self._prepare_action()).id
|
||||
)
|
||||
self.menu_id = self.env["ir.ui.menu"].create(self._prepare_menu()).id
|
||||
self.write({"state": "ui_valid"})
|
||||
|
||||
def button_update_model_access(self):
|
||||
self._drop_model_access()
|
||||
self._create_model_access()
|
||||
self.write({"has_group_changed": False})
|
||||
|
||||
def button_refresh_materialized_view(self):
|
||||
self._refresh_materialized_view()
|
||||
|
||||
def button_open_view(self):
|
||||
return {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": self.model_id.model,
|
||||
"search_view_id": self.search_view_id.id,
|
||||
"view_mode": self.action_id.view_mode,
|
||||
}
|
||||
|
||||
# Prepare Function
|
||||
def _prepare_model(self):
|
||||
self.ensure_one()
|
||||
field_id = []
|
||||
for field in self.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.field_description is not False
|
||||
):
|
||||
field_id.append([0, False, field._prepare_model_field()])
|
||||
return {
|
||||
"name": self.name,
|
||||
"model": self.model_name,
|
||||
"access_ids": [],
|
||||
"field_id": field_id,
|
||||
}
|
||||
|
||||
def _prepare_model_access(self):
|
||||
self.ensure_one()
|
||||
res = []
|
||||
for group in self.group_ids:
|
||||
res.append(
|
||||
{
|
||||
"name": _("%s Access %s") % (self.model_name, group.full_name),
|
||||
"model_id": self.model_id.id,
|
||||
"group_id": group.id,
|
||||
"perm_read": True,
|
||||
"perm_create": False,
|
||||
"perm_write": False,
|
||||
"perm_unlink": False,
|
||||
}
|
||||
)
|
||||
return res
|
||||
|
||||
def _prepare_cron(self):
|
||||
now = datetime.now()
|
||||
return {
|
||||
"name": _("Refresh Materialized View %s") % self.view_name,
|
||||
"user_id": 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,
|
||||
"interval_number": 1,
|
||||
"interval_type": "days",
|
||||
"nextcall": datetime(now.year, now.month, now.day + 1),
|
||||
"active": True,
|
||||
}
|
||||
|
||||
def _prepare_rule(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": _("Access %s") % self.name,
|
||||
"model_id": self.model_id.id,
|
||||
"domain_force": self.domain_force,
|
||||
"global": True,
|
||||
}
|
||||
|
||||
def _prepare_tree_view(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"type": "tree",
|
||||
"model": self.model_id.model,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<tree string="Analysis">{}"""
|
||||
"""</tree>""".format(
|
||||
"".join([x._prepare_tree_field() for x in self.bi_sql_view_field_ids])
|
||||
),
|
||||
}
|
||||
|
||||
def _prepare_graph_view(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"type": "graph",
|
||||
"model": self.model_id.model,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<graph string="Analysis" type="bar" stacked="True">{}"""
|
||||
"""</graph>""".format(
|
||||
"".join([x._prepare_graph_field() for x in self.bi_sql_view_field_ids])
|
||||
),
|
||||
}
|
||||
|
||||
def _prepare_pivot_view(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"type": "pivot",
|
||||
"model": self.model_id.model,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<pivot string="Analysis" stacked="True">{}"""
|
||||
"""</pivot>""".format(
|
||||
"".join([x._prepare_pivot_field() for x in self.bi_sql_view_field_ids])
|
||||
),
|
||||
}
|
||||
|
||||
def _prepare_search_view(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"type": "search",
|
||||
"model": self.model_id.model,
|
||||
"arch": """<?xml version="1.0"?>"""
|
||||
"""<search string="Analysis">{}"""
|
||||
"""<group expand="1" string="Group By">{}</group>"""
|
||||
"""</search>""".format(
|
||||
"".join(
|
||||
[x._prepare_search_field() for x in self.bi_sql_view_field_ids]
|
||||
),
|
||||
"".join(
|
||||
[
|
||||
x._prepare_search_filter_field()
|
||||
for x in self.bi_sql_view_field_ids
|
||||
]
|
||||
),
|
||||
),
|
||||
}
|
||||
|
||||
def _prepare_action(self):
|
||||
self.ensure_one()
|
||||
view_mode = self.view_order
|
||||
first_view = view_mode.split(",")[0]
|
||||
if first_view == "tree":
|
||||
view_id = self.tree_view_id.id
|
||||
elif first_view == "pivot":
|
||||
view_id = self.pivot_view_id.id
|
||||
else:
|
||||
view_id = self.graph_view_id.id
|
||||
action = safe_eval(self.computed_action_context)
|
||||
for k, v in safe_eval(self.action_context).items():
|
||||
action[k] = v
|
||||
return {
|
||||
"name": self._prepare_action_name(),
|
||||
"res_model": self.model_id.model,
|
||||
"type": "ir.actions.act_window",
|
||||
"view_mode": view_mode,
|
||||
"view_id": view_id,
|
||||
"search_view_id": self.search_view_id.id,
|
||||
"context": str(action),
|
||||
}
|
||||
|
||||
def _prepare_action_name(self):
|
||||
self.ensure_one()
|
||||
if not self.is_materialized:
|
||||
return self.name
|
||||
return "{} ({})".format(
|
||||
self.name,
|
||||
datetime.utcnow().strftime(_("%m/%d/%Y %H:%M:%S UTC")),
|
||||
)
|
||||
|
||||
def _prepare_menu(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"parent_id": self.env.ref("bi_sql_editor.menu_bi_sql_editor").id,
|
||||
"action": "ir.actions.act_window,%s" % self.action_id.id,
|
||||
"sequence": self.sequence,
|
||||
}
|
||||
|
||||
# Custom Section
|
||||
def _log_execute(self, req):
|
||||
_logger.info("Executing SQL Request %s ..." % 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_view.size = False
|
||||
|
||||
def _create_view(self):
|
||||
for sql_view in self:
|
||||
sql_view._drop_view()
|
||||
try:
|
||||
self._log_execute(sql_view._prepare_request_for_execution())
|
||||
sql_view._refresh_size()
|
||||
except ProgrammingError as e:
|
||||
raise UserError(
|
||||
_("SQL Error while creating %s VIEW %s :\n %s")
|
||||
% (sql_view.materialized_text, sql_view.view_name, str(e))
|
||||
)
|
||||
|
||||
def _create_index(self):
|
||||
for sql_view in self:
|
||||
for sql_field in sql_view.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.is_index is True
|
||||
):
|
||||
self._log_execute(
|
||||
"CREATE INDEX %s ON %s (%s);"
|
||||
% (sql_field.index_name, sql_view.view_name, sql_field.name)
|
||||
)
|
||||
|
||||
def _create_model_and_fields(self):
|
||||
for sql_view in self:
|
||||
# Create 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
|
||||
self._log_execute(req)
|
||||
|
||||
def _create_model_access(self):
|
||||
for sql_view in self:
|
||||
for item in sql_view._prepare_model_access():
|
||||
self.env["ir.model.access"].create(item)
|
||||
|
||||
def _drop_model_access(self):
|
||||
for sql_view in self:
|
||||
self.env["ir.model.access"].search(
|
||||
[("model_id", "=", sql_view.model_name)]
|
||||
).unlink()
|
||||
|
||||
def _drop_model_and_fields(self):
|
||||
for sql_view in self:
|
||||
if sql_view.rule_id:
|
||||
sql_view.rule_id.unlink()
|
||||
if sql_view.model_id:
|
||||
sql_view.model_id.with_context(_force_unlink=True).unlink()
|
||||
|
||||
def _hook_executed_request(self):
|
||||
self.ensure_one()
|
||||
req = (
|
||||
"""
|
||||
SELECT attnum,
|
||||
attname AS column,
|
||||
format_type(atttypid, atttypmod) AS type
|
||||
FROM pg_attribute
|
||||
WHERE attrelid = '%s'::regclass
|
||||
AND NOT attisdropped
|
||||
AND attnum > 0
|
||||
ORDER BY attnum;"""
|
||||
% 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)
|
||||
|
||||
def _prepare_request_for_execution(self):
|
||||
self.ensure_one()
|
||||
query = (
|
||||
"""
|
||||
SELECT
|
||||
CAST(row_number() OVER () as integer) AS id,
|
||||
CAST(Null as timestamp without time zone) as create_date,
|
||||
CAST(Null as integer) as create_uid,
|
||||
CAST(Null as timestamp without time zone) as write_date,
|
||||
CAST(Null as integer) as write_uid,
|
||||
my_query.*
|
||||
FROM
|
||||
(%s) as my_query
|
||||
"""
|
||||
% self.query
|
||||
)
|
||||
return "CREATE {} VIEW {} AS ({});".format(
|
||||
self.materialized_text,
|
||||
self.view_name,
|
||||
query,
|
||||
)
|
||||
|
||||
def _check_execution(self):
|
||||
"""Ensure that the query is valid, trying to execute it.
|
||||
a non materialized view is created for this check.
|
||||
A rollback is done at the end.
|
||||
After the execution, and before the rollback, an analysis of
|
||||
the database structure is done, to know fields type."""
|
||||
self.ensure_one()
|
||||
sql_view_field_obj = self.env["bi.sql.view.field"]
|
||||
columns = super(BiSQLView, self)._check_execution()
|
||||
field_ids = []
|
||||
for column in columns:
|
||||
existing_field = self.bi_sql_view_field_ids.filtered(
|
||||
lambda x: x.name == column[1]
|
||||
)
|
||||
if existing_field:
|
||||
# Update existing field
|
||||
field_ids.append(existing_field.id)
|
||||
existing_field.write({"sequence": column[0], "sql_type": column[2]})
|
||||
else:
|
||||
# Create a new one if name is prefixed by x_
|
||||
if column[1][:2] == "x_":
|
||||
field_ids.append(
|
||||
sql_view_field_obj.create(
|
||||
{
|
||||
"sequence": column[0],
|
||||
"name": column[1],
|
||||
"sql_type": column[2],
|
||||
"bi_sql_view_id": self.id,
|
||||
}
|
||||
).id
|
||||
)
|
||||
|
||||
# Drop obsolete view field
|
||||
self.bi_sql_view_field_ids.filtered(lambda x: x.id not in field_ids).unlink()
|
||||
|
||||
if not self.bi_sql_view_field_ids:
|
||||
raise UserError(
|
||||
_("No Column was found.\n" "Columns name should be prefixed by 'x_'.")
|
||||
)
|
||||
|
||||
return columns
|
||||
|
||||
@api.model
|
||||
def _refresh_materialized_view_cron(self, view_ids):
|
||||
sql_views = self.search(
|
||||
[
|
||||
("is_materialized", "=", True),
|
||||
("state", "in", ["model_valid", "ui_valid"]),
|
||||
("id", "in", view_ids),
|
||||
]
|
||||
)
|
||||
return sql_views._refresh_materialized_view()
|
||||
|
||||
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,
|
||||
)
|
||||
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
|
||||
).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
|
||||
)
|
||||
self._log_execute(req)
|
||||
sql_view.size = self.env.cr.fetchone()[0]
|
||||
|
||||
def check_manual_fields(self, model):
|
||||
# check the fields we need are defined on self, to stop it going
|
||||
# early on install / startup - particularly problematic during upgrade
|
||||
if "group_operator" in table_columns(
|
||||
self.env.cr, "bi_sql_view_field"
|
||||
) and model._name.startswith(self._model_prefix):
|
||||
# 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.
|
||||
self.env.cr.execute(
|
||||
"""
|
||||
SELECT
|
||||
f.name,
|
||||
f.ttype,
|
||||
f.group_operator
|
||||
FROM
|
||||
bi_sql_view v
|
||||
LEFT JOIN bi_sql_view_field f ON f.bi_sql_view_id = v.id
|
||||
WHERE
|
||||
v.model_name = %s
|
||||
;
|
||||
""",
|
||||
(model._name,),
|
||||
)
|
||||
sql_fields = self.env.cr.fetchall()
|
||||
|
||||
for sql_field in sql_fields:
|
||||
if (
|
||||
sql_field[0] in model._fields
|
||||
and sql_field[1] in ("integer", "float")
|
||||
and sql_field[2]
|
||||
):
|
||||
model._fields[sql_field[0]].group_operator = sql_field[2]
|
||||
|
||||
def button_preview_sql_expression(self):
|
||||
self.button_validate_sql_expression()
|
||||
res = self._execute_sql_request()
|
||||
raise UserError("\n".join(map(lambda x: str(x), res[:100])))
|
||||
265
bi_sql_editor/models/bi_sql_view_field.py
Normal file
@@ -0,0 +1,265 @@
|
||||
# Copyright (C) 2017 - 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).
|
||||
|
||||
import re
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class BiSQLViewField(models.Model):
|
||||
_name = "bi.sql.view.field"
|
||||
_description = "Bi SQL View Field"
|
||||
_order = "sequence"
|
||||
|
||||
_TTYPE_SELECTION = [
|
||||
("boolean", "boolean"),
|
||||
("char", "char"),
|
||||
("date", "date"),
|
||||
("datetime", "datetime"),
|
||||
("float", "float"),
|
||||
("integer", "integer"),
|
||||
("many2one", "many2one"),
|
||||
("selection", "selection"),
|
||||
]
|
||||
|
||||
_GRAPH_TYPE_SELECTION = [
|
||||
("col", "Column"),
|
||||
("row", "Row"),
|
||||
("measure", "Measure"),
|
||||
]
|
||||
|
||||
_TREE_VISIBILITY_SELECTION = [
|
||||
("unavailable", "Unavailable"),
|
||||
("hidden", "Hidden"),
|
||||
("available", "Available"),
|
||||
]
|
||||
|
||||
# Mapping to guess Odoo field type, from SQL column type
|
||||
_SQL_MAPPING = {
|
||||
"boolean": "boolean",
|
||||
"bigint": "integer",
|
||||
"integer": "integer",
|
||||
"double precision": "float",
|
||||
"numeric": "float",
|
||||
"text": "char",
|
||||
"character varying": "char",
|
||||
"date": "date",
|
||||
"timestamp without time zone": "datetime",
|
||||
}
|
||||
|
||||
_GROUP_OPERATOR_SELECTION = [
|
||||
("sum", "Sum"),
|
||||
("avg", "Average"),
|
||||
("min", "Minimum"),
|
||||
("max", "Maximum"),
|
||||
]
|
||||
|
||||
name = fields.Char(string="Name", required=True, readonly=True)
|
||||
|
||||
sql_type = fields.Char(
|
||||
string="SQL Type", required=True, readonly=True, help="SQL Type in the database"
|
||||
)
|
||||
|
||||
sequence = fields.Integer(string="sequence", required=True, readonly=True)
|
||||
|
||||
bi_sql_view_id = fields.Many2one(
|
||||
string="SQL View", comodel_name="bi.sql.view", ondelete="cascade"
|
||||
)
|
||||
|
||||
is_index = fields.Boolean(
|
||||
string="Is Index",
|
||||
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",
|
||||
)
|
||||
|
||||
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",
|
||||
)
|
||||
|
||||
index_name = fields.Char(string="Index Name", compute="_compute_index_name")
|
||||
|
||||
graph_type = fields.Selection(string="Graph Type", selection=_GRAPH_TYPE_SELECTION)
|
||||
|
||||
tree_visibility = fields.Selection(
|
||||
string="Tree Visibility",
|
||||
selection=_TREE_VISIBILITY_SELECTION,
|
||||
default="available",
|
||||
required=True,
|
||||
)
|
||||
|
||||
field_description = fields.Char(
|
||||
string="Field Description",
|
||||
help="This will be used as the name" " of the Odoo field, displayed for users",
|
||||
)
|
||||
|
||||
ttype = fields.Selection(
|
||||
string="Field Type",
|
||||
selection=_TTYPE_SELECTION,
|
||||
help="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",
|
||||
)
|
||||
|
||||
selection = fields.Text(
|
||||
string="Selection Options",
|
||||
default="[]",
|
||||
help="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')]",
|
||||
)
|
||||
|
||||
many2one_model_id = fields.Many2one(
|
||||
comodel_name="ir.model",
|
||||
string="Model",
|
||||
help="For 'Many2one' Odoo field.\n" " Comodel of the field.",
|
||||
)
|
||||
|
||||
group_operator = fields.Selection(
|
||||
string="Group Operator",
|
||||
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",
|
||||
)
|
||||
|
||||
# Constrains Section
|
||||
@api.constrains("is_index")
|
||||
def _check_index_materialized(self):
|
||||
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")
|
||||
)
|
||||
|
||||
# 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,
|
||||
)
|
||||
|
||||
# Overload Section
|
||||
@api.model
|
||||
def create(self, vals):
|
||||
field_without_prefix = vals["name"][2:]
|
||||
# guess field description
|
||||
field_description = re.sub(
|
||||
r"\w+",
|
||||
lambda m: m.group(0).capitalize(),
|
||||
field_without_prefix.replace("_id", "").replace("_", " "),
|
||||
)
|
||||
|
||||
# Guess ttype
|
||||
# Don't execute as simple .get() in the dict to manage
|
||||
# correctly the type 'character varying(x)'
|
||||
ttype = False
|
||||
for k, v in self._SQL_MAPPING.items():
|
||||
if k in vals["sql_type"]:
|
||||
ttype = v
|
||||
|
||||
# Guess many2one_model_id
|
||||
many2one_model_id = False
|
||||
if vals["sql_type"] == "integer" and (vals["name"][-3:] == "_id"):
|
||||
ttype = "many2one"
|
||||
model_name = self._model_mapping().get(field_without_prefix, "")
|
||||
many2one_model_id = (
|
||||
self.env["ir.model"].search([("model", "=", model_name)]).id
|
||||
)
|
||||
|
||||
vals.update(
|
||||
{
|
||||
"ttype": ttype,
|
||||
"field_description": field_description,
|
||||
"many2one_model_id": many2one_model_id,
|
||||
}
|
||||
)
|
||||
return super(BiSQLViewField, self).create(vals)
|
||||
|
||||
# Custom Section
|
||||
@api.model
|
||||
def _model_mapping(self):
|
||||
"""Return dict of key value, to try to guess the model based on a
|
||||
field name. Sample :
|
||||
{'account_id': 'account.account'; 'product_id': 'product.product'}
|
||||
"""
|
||||
relation_fields = self.env["ir.model.fields"].search(
|
||||
[("ttype", "=", "many2one")]
|
||||
)
|
||||
res = {}
|
||||
keys_to_pop = []
|
||||
for field in relation_fields:
|
||||
if field.name in res and res.get(field.name) != field.relation:
|
||||
# The field name is not predictive
|
||||
keys_to_pop.append(field.name)
|
||||
else:
|
||||
res.update({field.name: field.relation})
|
||||
|
||||
for key in list(set(keys_to_pop)):
|
||||
res.pop(key)
|
||||
|
||||
return res
|
||||
|
||||
def _prepare_model_field(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"name": self.name,
|
||||
"field_description": self.field_description,
|
||||
"model_id": self.bi_sql_view_id.model_id.id,
|
||||
"ttype": self.ttype,
|
||||
"selection": self.ttype == "selection" and self.selection or False,
|
||||
"relation": self.ttype == "many2one"
|
||||
and self.many2one_model_id.model
|
||||
or False,
|
||||
}
|
||||
|
||||
def _prepare_tree_field(self):
|
||||
self.ensure_one()
|
||||
res = ""
|
||||
if self.field_description and self.tree_visibility != "unavailable":
|
||||
res = """<field name="{}" {}/>""".format(
|
||||
self.name, self.tree_visibility == "hidden" and 'invisible="1"' or ""
|
||||
)
|
||||
return res
|
||||
|
||||
def _prepare_graph_field(self):
|
||||
self.ensure_one()
|
||||
res = ""
|
||||
if self.graph_type and self.field_description:
|
||||
res = """<field name="{}" type="{}" />\n""".format(
|
||||
self.name, self.graph_type
|
||||
)
|
||||
return res
|
||||
|
||||
def _prepare_pivot_field(self):
|
||||
self.ensure_one()
|
||||
res = ""
|
||||
if self.field_description:
|
||||
graph_type_text = self.graph_type and 'type="%s"' % (self.graph_type) or ""
|
||||
res = """<field name="{}" {} />\n""".format(self.name, graph_type_text)
|
||||
return res
|
||||
|
||||
def _prepare_search_field(self):
|
||||
self.ensure_one()
|
||||
res = ""
|
||||
if self.field_description:
|
||||
res = """<field name="{}"/>\n""".format(self.name)
|
||||
return res
|
||||
|
||||
def _prepare_search_filter_field(self):
|
||||
self.ensure_one()
|
||||
res = ""
|
||||
if self.field_description and self.is_group_by:
|
||||
res = """<filter name="group_by_%s" string="%s"
|
||||
context="{'group_by':'%s'}"/>\n""" % (
|
||||
self.name,
|
||||
self.field_description,
|
||||
self.name,
|
||||
)
|
||||
return res
|
||||
9
bi_sql_editor/models/ir_model.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from odoo import models
|
||||
|
||||
|
||||
class IrModelFields(models.Model):
|
||||
_inherit = "ir.model.fields"
|
||||
|
||||
def _add_manual_fields(self, model):
|
||||
super()._add_manual_fields(model)
|
||||
self.env["bi.sql.view"].check_manual_fields(model)
|
||||
38
bi_sql_editor/readme/CONFIGURE.rst
Normal file
@@ -0,0 +1,38 @@
|
||||
To configure this module, you need to:
|
||||
|
||||
* Go to Settings / Technical / Database Structure / 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
|
||||
|
||||
* Click on the button 'Clean and Check Request'
|
||||
|
||||
* 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 View, Indexes and Models'. (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
|
||||
|
||||
* Finally, click on 'Create UI', to create new menu, action, graph view and
|
||||
search view.
|
||||
14
bi_sql_editor/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,14 @@
|
||||
* Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
* Richard deMeester, WilldooIT (http://www.willdooit.com/)
|
||||
* David James, WilldooIT (http://www.willdooit.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
|
||||
40
bi_sql_editor/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,40 @@
|
||||
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
|
||||
2
bi_sql_editor/readme/INSTALL.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
* You must put this module as `server_wide_modules` in your odoo configuration file
|
||||
or add '--load=bi_sql_editor' if you start odoo in command line.
|
||||
13
bi_sql_editor/readme/USAGE.rst
Normal file
@@ -0,0 +1,13 @@
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to 'Reporting' / 'Custom Reports'
|
||||
|
||||
#. Select the desired report
|
||||
|
||||
.. figure:: ../static/description/05_reporting_pivot.png
|
||||
:width: 800 px
|
||||
|
||||
* You can switch to 'Pie' chart or 'Line Chart' as any report,
|
||||
|
||||
.. figure:: ../static/description/05_reporting_pie.png
|
||||
:width: 800 px
|
||||
6
bi_sql_editor/security/ir.model.access.csv
Normal file
@@ -0,0 +1,6 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_bi_sql_view_all,access_bi_sql_view_all,model_bi_sql_view,,0,0,0,0
|
||||
access_bi_sql_view_manager,access_bi_sql_view_manager,model_bi_sql_view,sql_request_abstract.group_sql_request_manager,1,1,1,1
|
||||
,,,,,,,
|
||||
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
|
||||
|
BIN
bi_sql_editor/static/description/01_sql_request.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
bi_sql_editor/static/description/02_security_access.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
bi_sql_editor/static/description/03_field_mapping.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 40 KiB |
BIN
bi_sql_editor/static/description/05_reporting_pie.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
bi_sql_editor/static/description/05_reporting_pivot.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
bi_sql_editor/static/description/06_action_datetime_name.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
bi_sql_editor/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
543
bi_sql_editor/static/description/index.html
Normal file
@@ -0,0 +1,543 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||
<title>BI SQL Editor</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="bi-sql-editor">
|
||||
<h1 class="title">BI SQL Editor</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" 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" 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" href="https://github.com/OCA/reporting-engine/tree/13.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" href="https://translation.odoo-community.org/projects/reporting-engine-13-0/reporting-engine-13-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" href="https://runbot.odoo-community.org/runbot/143/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-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>
|
||||
<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>
|
||||
<div class="section" id="warning">
|
||||
<h1>Warning</h1>
|
||||
<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>
|
||||
</div>
|
||||
<div class="section" id="use-cases">
|
||||
<h1>Use Cases</h1>
|
||||
<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>
|
||||
</ul>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
|
||||
<li><a class="reference internal" href="#configuration" id="id2">Configuration</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="id3">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id4">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id5">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id6">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id7">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id8">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="installation">
|
||||
<h2><a class="toc-backref" href="#id1">Installation</a></h2>
|
||||
<ul class="simple">
|
||||
<li>You must put this module as <cite>server_wide_modules</cite> in your odoo configuration file
|
||||
or add ‘–load=bi_sql_editor’ if you start odoo in command line.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="configuration">
|
||||
<h2><a class="toc-backref" href="#id2">Configuration</a></h2>
|
||||
<p>To configure this module, you need to:</p>
|
||||
<ul>
|
||||
<li><p class="first">Go to Settings / Technical / Database Structure / 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/13.0/bi_sql_editor/static/description/01_sql_request.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/01_sql_request.png" style="width: 800px;" />
|
||||
</div>
|
||||
</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/13.0/bi_sql_editor/static/description/02_security_access.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/02_security_access.png" style="width: 800px;" />
|
||||
</div>
|
||||
</li>
|
||||
<li><p class="first">Click on the button ‘Clean and Check Request’</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/13.0/bi_sql_editor/static/description/03_field_mapping.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/03_field_mapping.png" style="width: 800px;" />
|
||||
</div>
|
||||
</li>
|
||||
<li><p class="first">Click on the button ‘Create SQL View, Indexes and Models’. (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>the size of view (and the indexes is displayed)</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<div class="figure">
|
||||
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/04_materialized_view_setting.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/04_materialized_view_setting.png" style="width: 800px;" />
|
||||
</div>
|
||||
</li>
|
||||
<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="#id3">Usage</a></h2>
|
||||
<p>To use this module, you need to:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to ‘Reporting’ / ‘Custom Reports’</li>
|
||||
<li>Select the desired report</li>
|
||||
</ol>
|
||||
<blockquote>
|
||||
<div class="figure">
|
||||
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pivot.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pivot.png" style="width: 800px;" />
|
||||
</div>
|
||||
</blockquote>
|
||||
<ul>
|
||||
<li><p class="first">You can switch to ‘Pie’ chart or ‘Line Chart’ as any report,</p>
|
||||
<div class="figure">
|
||||
<img alt="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pie.png" src="https://raw.githubusercontent.com/OCA/reporting-engine/13.0/bi_sql_editor/static/description/05_reporting_pie.png" style="width: 800px;" />
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h2><a class="toc-backref" href="#id4">Bug Tracker</a></h2>
|
||||
<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 smashing 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:%2013.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="#id5">Credits</a></h2>
|
||||
<div class="section" id="authors">
|
||||
<h3><a class="toc-backref" href="#id6">Authors</a></h3>
|
||||
<ul class="simple">
|
||||
<li>GRAP</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h3><a class="toc-backref" href="#id7">Contributors</a></h3>
|
||||
<ul class="simple">
|
||||
<li>Sylvain LE GAL (<a class="reference external" href="https://twitter.com/legalsylvain">https://twitter.com/legalsylvain</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>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h3><a class="toc-backref" href="#id8">Maintainers</a></h3>
|
||||
<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" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/13.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>
|
||||
BIN
bi_sql_editor/static/description/main_screenshot.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
2
bi_sql_editor/tests/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from . import test_bi_sql_view
|
||||
94
bi_sql_editor/tests/test_bi_sql_view.py
Normal file
@@ -0,0 +1,94 @@
|
||||
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo.exceptions import AccessError, UserError
|
||||
from odoo.tests import tagged
|
||||
from odoo.tests.common import SingleTransactionCase
|
||||
|
||||
|
||||
@tagged("-at_install", "post_install")
|
||||
class TestBiSqlViewEditor(SingleTransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestBiSqlViewEditor, cls).setUpClass()
|
||||
|
||||
cls.res_partner = cls.env["res.partner"]
|
||||
cls.res_users = cls.env["res.users"]
|
||||
cls.bi_sql_view = cls.env["bi.sql.view"]
|
||||
cls.group_bi_user = cls.env.ref(
|
||||
"sql_request_abstract.group_sql_request_manager"
|
||||
)
|
||||
cls.group_user = cls.env.ref("base.group_user")
|
||||
cls.view = cls.bi_sql_view.create(
|
||||
{
|
||||
"name": "Partners View 2",
|
||||
"is_materialized": True,
|
||||
"technical_name": "partners_view_2",
|
||||
"query": "SELECT name as x_name, street as x_street,"
|
||||
"company_id as x_company_id FROM res_partner "
|
||||
"ORDER BY name",
|
||||
}
|
||||
)
|
||||
cls.company = cls.env.ref("base.main_company")
|
||||
# Create bi user
|
||||
cls.bi_user = cls._create_user("bi_user", cls.group_bi_user, cls.company)
|
||||
cls.no_bi_user = cls._create_user("no_bi_user", cls.group_user, cls.company)
|
||||
|
||||
@classmethod
|
||||
def _create_user(cls, login, groups, company):
|
||||
"""Create a user."""
|
||||
user = cls.res_users.create(
|
||||
{
|
||||
"name": login,
|
||||
"login": login,
|
||||
"password": "demo",
|
||||
"email": "example@yourcompany.com",
|
||||
"company_id": company.id,
|
||||
"groups_id": [(6, 0, groups.ids)],
|
||||
}
|
||||
)
|
||||
return user
|
||||
|
||||
def test_process_view(self):
|
||||
view = self.view
|
||||
self.assertEqual(view.state, "draft", "state not draft")
|
||||
view.button_validate_sql_expression()
|
||||
self.assertEqual(view.state, "sql_valid", "state not sql_valid")
|
||||
view.button_create_sql_view_and_model()
|
||||
self.assertEqual(view.state, "model_valid", "state not model_valid")
|
||||
view.button_create_ui()
|
||||
self.assertEqual(view.state, "ui_valid", "state not ui_valid")
|
||||
view.button_update_model_access()
|
||||
self.assertEqual(view.has_group_changed, False, "has_group_changed not False")
|
||||
cron_res = view.cron_id.method_direct_trigger()
|
||||
self.assertEqual(cron_res, True, "something went wrong with the cron")
|
||||
|
||||
def test_copy(self):
|
||||
copy_view = self.view.copy()
|
||||
self.assertEqual(copy_view.name, "Partners View 2 (Copy)", "Wrong name")
|
||||
|
||||
def test_security(self):
|
||||
with self.assertRaises(AccessError):
|
||||
self.bi_sql_view.with_user(self.no_bi_user.id).search(
|
||||
[("name", "=", "Partners View 2")]
|
||||
)
|
||||
bi = self.bi_sql_view.with_user(self.bi_user.id).search(
|
||||
[("name", "=", "Partners View 2")]
|
||||
)
|
||||
self.assertEqual(
|
||||
len(bi), 1, "Bi user should not have access to " "bi %s" % self.view.name
|
||||
)
|
||||
|
||||
def test_unlink(self):
|
||||
self.assertEqual(self.view.state, "ui_valid", "state not ui_valid")
|
||||
with self.assertRaises(UserError):
|
||||
self.view.unlink()
|
||||
self.view.button_set_draft()
|
||||
self.assertNotEqual(
|
||||
self.view.cron_id,
|
||||
False,
|
||||
"Set to draft materialized view should" " not unlink cron",
|
||||
)
|
||||
self.view.unlink()
|
||||
res = self.bi_sql_view.search([("name", "=", "Partners View 2")])
|
||||
self.assertEqual(len(res), 0, "View not deleted")
|
||||
14
bi_sql_editor/views/action.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2017 - 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).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="action_bi_sql_view" model="ir.actions.act_window">
|
||||
<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>
|
||||
</record>
|
||||
</odoo>
|
||||
22
bi_sql_editor/views/menu.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2017 - 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).
|
||||
-->
|
||||
<odoo>
|
||||
<!-- Menu that will contain all the SQL report generated by this module -->
|
||||
<menuitem
|
||||
id="menu_bi_sql_editor"
|
||||
name="SQL Reports"
|
||||
parent="base.menu_board_root"
|
||||
groups="sql_request_abstract.group_sql_request_user"
|
||||
sequence="0"
|
||||
/>
|
||||
<menuitem
|
||||
id="menu_bi_sql_view"
|
||||
parent="base.next_id_9"
|
||||
groups="sql_request_abstract.group_sql_request_manager"
|
||||
action="action_bi_sql_view"
|
||||
/>
|
||||
</odoo>
|
||||
242
bi_sql_editor/views/view_bi_sql_view.xml
Normal file
@@ -0,0 +1,242 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2017 - 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).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="view_bi_sql_view_tree" model="ir.ui.view">
|
||||
<field name="model">bi.sql.view</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree
|
||||
decoration-info="state=='draft'"
|
||||
decoration-warning="state in ('sql_valid', 'model_valid')"
|
||||
>
|
||||
<field name="sequence" widget="handle" />
|
||||
<field name="name" />
|
||||
<field name="technical_name" />
|
||||
<field name="size" />
|
||||
<field name="state" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
<record id="view_bi_sql_view_form" model="ir.ui.view">
|
||||
<field name="model">bi.sql.view</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<header>
|
||||
<button
|
||||
name="button_validate_sql_expression"
|
||||
type="object"
|
||||
states="draft"
|
||||
string="Validate SQL Expression"
|
||||
class="oe_highlight"
|
||||
/>
|
||||
<button
|
||||
name="button_set_draft"
|
||||
type="object"
|
||||
states="sql_valid"
|
||||
string="Set to Draft"
|
||||
groups="sql_request_abstract.group_sql_request_manager"
|
||||
/>
|
||||
<button
|
||||
name="button_set_draft"
|
||||
type="object"
|
||||
states="model_valid,ui_valid"
|
||||
string="Set to Draft"
|
||||
groups="sql_request_abstract.group_sql_request_manager"
|
||||
confirm="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"
|
||||
/>
|
||||
<button
|
||||
name="button_preview_sql_expression"
|
||||
type="object"
|
||||
states="draft"
|
||||
string="Preview SQL Expression"
|
||||
/>
|
||||
<button
|
||||
name="button_create_sql_view_and_model"
|
||||
type="object"
|
||||
states="sql_valid"
|
||||
string="Create SQL View, Indexes and Models"
|
||||
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"
|
||||
/>
|
||||
<button
|
||||
name="button_update_model_access"
|
||||
type="object"
|
||||
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('has_group_changed', '=', False)]}"
|
||||
string="Update Model Access"
|
||||
class="oe_highlight"
|
||||
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"
|
||||
string="Create UI"
|
||||
class="oe_highlight"
|
||||
help="This will create Odoo View, Action and Menu"
|
||||
/>
|
||||
<button
|
||||
name="button_refresh_materialized_view"
|
||||
type="object"
|
||||
string="Refresh Materialized View"
|
||||
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}"
|
||||
help="this will refresh the materialized view"
|
||||
/>
|
||||
<button
|
||||
name="button_open_view"
|
||||
type="object"
|
||||
string="Open View"
|
||||
states="ui_valid"
|
||||
class="oe_highlight"
|
||||
/>
|
||||
<field name="state" widget="statusbar" />
|
||||
</header>
|
||||
<sheet>
|
||||
<h1>
|
||||
<field
|
||||
name="name"
|
||||
attrs="{'readonly': [('state','!=','draft')]}"
|
||||
colspan="4"
|
||||
/>
|
||||
</h1>
|
||||
<group>
|
||||
<group>
|
||||
<group>
|
||||
<field
|
||||
name="technical_name"
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"
|
||||
/>
|
||||
<field name="view_name" />
|
||||
<field name="view_order" />
|
||||
<field name="is_materialized" />
|
||||
<field
|
||||
name="size"
|
||||
attrs="{'invisible': ['|', ('state', '=', 'draft'), ('is_materialized', '=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="cron_id"
|
||||
attrs="{'invisible': ['|', ('state', 'in', ('draft', 'sql_valid')), ('is_materialized', '=', False)]}"
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
<notebook>
|
||||
<page string="SQL Query">
|
||||
<field
|
||||
name="query"
|
||||
nolabel="1"
|
||||
colspan="4"
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"
|
||||
/>
|
||||
</page>
|
||||
<page
|
||||
string="SQL Fields"
|
||||
attrs="{'invisible': [('state', '=', 'draft')]}"
|
||||
>
|
||||
<field
|
||||
name="bi_sql_view_field_ids"
|
||||
nolabel="1"
|
||||
colspan="4"
|
||||
attrs="{'readonly': [('state', '!=', 'sql_valid')]}"
|
||||
>
|
||||
<tree
|
||||
editable="bottom"
|
||||
decoration-info="field_description==False"
|
||||
>
|
||||
<field name="sequence" />
|
||||
<field name="name" />
|
||||
<field name="sql_type" />
|
||||
<field name="field_description" />
|
||||
<field
|
||||
name='group_operator'
|
||||
attrs="{
|
||||
'invisible': ['!', ('ttype', 'in', ('float', 'integer'))]}"
|
||||
/>
|
||||
<field
|
||||
name="ttype"
|
||||
attrs="{
|
||||
'required': [('field_description', '!=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="many2one_model_id"
|
||||
attrs="{
|
||||
'invisible': [('ttype', '!=', 'many2one')],
|
||||
'required': [
|
||||
('field_description', '!=', False),
|
||||
('ttype', '=', 'many2one')]}"
|
||||
/>
|
||||
<field
|
||||
name="selection"
|
||||
attrs="{
|
||||
'invisible': [('ttype', '!=', 'selection')],
|
||||
'required': [
|
||||
('field_description', '!=', False),
|
||||
('ttype', '=', 'selection')]}"
|
||||
/>
|
||||
<field
|
||||
name="is_index"
|
||||
attrs="{'invisible': [('field_description', '=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="is_group_by"
|
||||
attrs="{'invisible': [('field_description', '=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="graph_type"
|
||||
attrs="{'invisible': [('field_description', '=', False)]}"
|
||||
/>
|
||||
<field
|
||||
name="tree_visibility"
|
||||
attrs="{'invisible': [('field_description', '=', False)]}"
|
||||
/>
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Security">
|
||||
<group string="Rule Definition">
|
||||
<field name="domain_force" nolabel="1" colspan="4" />
|
||||
</group>
|
||||
<group string="Allowed Groups">
|
||||
<field name="group_ids" nolabel="1" colspan="4" />
|
||||
<field name="has_group_changed" invisible="1" />
|
||||
</group>
|
||||
</page>
|
||||
<page string="Action Settings">
|
||||
<group string="Computed Context">
|
||||
<field
|
||||
name="computed_action_context"
|
||||
nolabel="1"
|
||||
colspan="4"
|
||||
/>
|
||||
</group>
|
||||
<group string="Custom Context">
|
||||
<field name="action_context" nolabel="1" colspan="4" />
|
||||
</group>
|
||||
</page>
|
||||
<page string="Extras Information">
|
||||
<group>
|
||||
<group string="Model">
|
||||
<field name="model_name" />
|
||||
<field
|
||||
name="model_id"
|
||||
attrs="{'invisible': [('state', '=', 'draft')]}"
|
||||
/>
|
||||
</group>
|
||||
<group string="User Interface">
|
||||
<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" />
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||